Searched +full:- +full:g (Results 1 – 6 of 6) sorted by relevance
/tinycbor-2.7.6/ |
D | .travis.yml | 4 - os: linux 8 - ubuntu-toolchain-r-test 9 - sourceline: 'ppa:beineri/opt-qt593-trusty' 11 - qt59base valgrind 12 - g++-7 14 - QMAKESPEC=linux-g++ 15 - EVAL="CC=gcc-7 && CXX=g++-7" 16 - CFLAGS="-Os" 17 - QMAKEFLAGS="-config release" 18 - os: linux [all …]
|
D | Doxyfile | 16 #--------------------------------------------------------------------------- 18 #--------------------------------------------------------------------------- 21 # that follow. The default is UTF-8 which is also the encoding used for all text 25 # The default value is: UTF-8. 27 DOXYFILE_ENCODING = UTF-8 30 # double-quotes, unless you are using Doxywizard) that should identify the 63 # If the CREATE_SUBDIRS tag is set to YES, then doxygen will create 4096 sub- 73 # If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII 74 # characters to appear in the names of generated files. If set to NO, non-ASCII 85 # Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States), [all …]
|
/tinycbor-2.7.6/tools/ |
D | Makefile | 1 CFLAGS = -O2 -g 2 CPPFLAGS = -I../src 7 @-mkdir ../bin 10 $(CC) -o $@ $^
|
/tinycbor-2.7.6/examples/ |
D | simplereader.c | 15 if (fstat(fileno(f), &st) == -1) in readfile() 25 while (nestingLevel--) in indent() 31 while (len--) in dumpbytes() 132 printf("%g\n", val); in dumprecursive() 177 it.ptr - buf, cbor_error_string(err)); in main()
|
/tinycbor-2.7.6/src/ |
D | cborpretty.c | 64 * These functions also perform UTF-8 validation in CBOR text strings. If they 65 * encounter a sequence of bytes that not permitted in UTF-8, they will return 67 * in UTF-8. 88 * Base-10 (decimal) text representation of the value 92 …* C-style escaped string in quotes, with C11/C++11 escaping of Unicode codepoints above U+007… 106 …* with float values suffixed by "f" and half-float values suffixed by "f16" (doubles have no … 108 * Comma-separated list of elements, enclosed in square brackets ("[" and "]"). 111 * Comma-separated list of key-value pairs, with the key and value separated 118 while (n--) { in hexDump() 126 /* This function decodes buffer as UTF-8 and prints as escaped UTF-16. [all …]
|
D | cbortojson.c | 59 * in a post-processing phase. 63 * of metadata JSON values that can be used by a JSON-to-CBOR converter to 77 * These functions also perform UTF-8 validation in CBOR text strings. If they 78 * encounter a sequence of bytes that not permitted in UTF-8, they will return 80 * in UTF-8. 99 * double-precision floating point. This means JSON is not capable of 100 * representing integers numbers outside the range [-(2<sup>53</sup>)+1, 101 * 2<sup>53</sup>-1] and is not capable of representing NaN or infinite. If the 104 * conversion will be "null". In addition, the distinction between half-, 105 * single- and double-precision is lost. [all …]
|