Home
last modified time | relevance | path

Searched full:which (Results 1 – 9 of 9) sorted by relevance

/tinycbor-2.7.6/
DDoxyfile21 # that follow. The default is UTF-8 which is also the encoding used for all text
31 # project for which the documentation is generated. This name is used in the
57 # into which the generated documentation will be written. If a relative path is
81 # The OUTPUT_LANGUAGE tag is used to specify the language in which all
148 # If left blank the directory from which doxygen is run is used as the path to
151 # Note that you can specify absolute paths here, but also relative paths, which
158 # path mentioned in the documentation of a class, which tells the reader which
227 # documentation, which will result in a user-defined paragraph with heading
268 # parses. With this tag you can assign which parser to use for a given
287 # according to the Markdown format, which allows for more readable
[all …]
D.travis.yml60 TESTRUNNER=`which valgrind 2>/dev/null`
/tinycbor-2.7.6/src/
Dcborerrorstrings.c38 * out-of-memory condition (CborErrorOutOfMemory), which the functions for \ref
42 * a lack of buffer space, which may not be a fatal condition if the buffer can
Dcbortojson.c68 * \c json2cbor which can be used for that purpose. That tool supports the
111 * CBOR's type system is richer than JSON's, which means some data values
114 * simple type's value, with the exception of CBOR undefined, which becomes
143 * they will be repeated in the output, which may JSON tools may flag as
293 /* extract the tagged type, which may be JSON native */ in add_value_metadata()
Dcborparser.c51 * payload. The main data type for the parsing is a CborValue, which behaves
75 * The code above does no error checking, which means it assumes the data comes
114 * CborNoError standing for the normal situation in which no parsing error
763 * two's complement, C11 7.20.1.1 paragraph 3), which in CBOR is in cbor_value_get_int64_checked()
909 * function. The choice is to optimize for memcpy, which is used in the base
1295 * storage area, which must be at least 16 bits wide.
Dcborvalidation.c286 * which are parsed by the parser into different CBOR types. in validate_simple_type()
Dcborencoder.c73 * one array or map, which in turn contains multiple elements. The example
/tinycbor-2.7.6/include/tinycbor/
Dcompilersupport_p.h121 /* MSVC, which implies Windows, which implies little-endian and sizeof(long) == 4 */
Dcbor.h46 * which says: "the value is converted by repeatedly adding or subtracting one more than the
49 * So -1 gets converted to size_t by adding SIZE_MAX + 1, which results in SIZE_MAX.