Home
last modified time | relevance | path

Searched full:i (Results 1 – 13 of 13) sorted by relevance

/tinycbor-2.7.6/
D.appveyor.yml12 …if /i "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2013" (call "C:\Program Files (x86)\Microsof…
14 …if /i "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2015" (call "C:\Program Files (x86)\Microsof…
16 …if /i "%APPVEYOR_BUILD_WORKER_IMAGE%"=="Visual Studio 2017" (call "C:\Program Files (x86)\Microsof…
25 if /i "%tests%"=="1" qmake CONFIG-=release CONFIG+=debug
27 if /i "%tests%"=="1" nmake -nologo -s
30 if /i "%tests%"=="1" nmake -s -nologo check
32 if /i "%tests%"=="0" echo Tests skipped.
Dtinycbor.pc.in11 Cflags: -I${includedir}/tinycbor
DMakefile.configure15 CCFLAGS-cjson = -I$(dir $(MAKEFILE))src/cjson
DMakefile119 json2cbor_CCFLAGS = -I$(SRCDIR)src/cjson
224 cflags := $(CPPFLAGS) -I$(SRCDIR)src
DDoxyfile162 # using the -I flag.
191 # multi-line C++ special comment block (i.e. a block of //! or /// comments) as
304 # If you use STL classes (i.e. std::string, std::vector, etc.) but do not want
368 # the documentation of the scope in which they are defined (i.e. file,
771 # *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h, *.hh, *.hxx, *.hpp,
878 # producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES).
967 # tools must be available from the command line (i.e. in the search path).
1362 # (i.e. any modern browser). Windows users are probably better off using the
1433 # compatibility), NativeMML (i.e. MathML) and SVG.
1740 # file, i.e. a series of assignments. You only have to provide replacements,
[all …]
/tinycbor-2.7.6/src/
Dcbortojson.c178 size_t i; in dump_bytestring_base16() local
194 for (i = 0; i < n; ++i) { in dump_bytestring_base16()
195 uint8_t byte = buffer[n + i]; in dump_bytestring_base16()
196 buffer[2*i] = characters[byte >> 4]; in dump_bytestring_base16()
197 buffer[2*i + 1] = characters[byte & 0xf]; in dump_bytestring_base16()
204 size_t n = 0, i; in generic_dump_base64() local
225 for (i = 0; n - i >= 3; i += 3) { in generic_dump_base64()
229 } else if (i) { in generic_dump_base64()
230 __builtin_memcpy(&val, in + i - 1, sizeof(val)); in generic_dump_base64()
234 val = (in[i] << 16) | (in[i + 1] << 8) | in[i + 2]; in generic_dump_base64()
[all …]
Dcborencoder.c151 * int i;
162 * for (i = 0; i < n; ++i) {
163 * err = cbor_encode_text_stringz(&arrayEncoder, strings[i]);
425 int i; in cbor_encode_byte_iovec() local
428 for (i = 0; i < iov_len; i++) { in cbor_encode_byte_iovec()
429 length += iov[i].iov_len; in cbor_encode_byte_iovec()
435 for (i = 0; i < iov_len; i++) { in cbor_encode_byte_iovec()
436 err = append_to_buffer(encoder, iov[i].iov_base, iov[i].iov_len); in cbor_encode_byte_iovec()
Dcborvalidation.c491 int i; in validate_container() local
493 for (i = 0; i < (bytelen1 <= bytelen2 ? bytelen1 : bytelen2); i++) { in validate_container()
494 int r = it->parser->d->get8(it->parser->d, previous + i) - in validate_container()
495 it->parser->d->get8(it->parser->d, current + i); in validate_container()
Dcborerrorstrings.c51 …* \value CborErrorIO An I/O error occurred, probably due to an out-of-memory sit…
99 return _("I/O error"); in cbor_error_string()
/tinycbor-2.7.6/tools/json2cbor/
Djson2cbor.c152 size_t i; in decode_base16() local
158 for (i = 0; i < *len; ++i) { in decode_base16()
159 char c = string[i * 2]; in decode_base16()
161 buffer[i] = (c - '0') << 4; in decode_base16()
163 buffer[i] = ((c | 0x20) - 'a' + 10) << 4; in decode_base16()
169 c = string[i * 2 + 1]; in decode_base16()
171 buffer[i] |= (c - '0'); in decode_base16()
173 buffer[i] |= ((c | 0x20) - 'a' + 10); in decode_base16()
/tinycbor-2.7.6/tests/encoder/
Dtst_encoder.cpp564 for (int i = 0; i < 5; ++i) { in arrays() local
572 for (int i = 0; i < 3; ++i) { in arrays() local
612 for (int i = 0; i < 5; ++i) { in maps() local
620 for (int i = 0; i < 3; ++i) { in maps() local
/tinycbor-2.7.6/tools/
DMakefile2 CPPFLAGS = -I../src
/tinycbor-2.7.6/tests/parser/
Dtst_parser.cpp618 for (int i = 0; i < 5; ++i) { in arrays() local
628 for (int i = 0; i < 3; ++i) { in arrays() local
1732 for (int i = 0; i < 256; ++i) { in strictValidation_data() local
1733 mapentry[1] = 'A' + (i >> 4); in strictValidation_data()
1734 mapentry[2] = 'a' + (i & 0xf); in strictValidation_data()
1735 memcpy(mapdata256ptr + i * sizeof(mapentry), mapentry, sizeof(mapentry)); in strictValidation_data()
1736 if (i < 24) in strictValidation_data()
1737 memcpy(mapdata24ptr + i * sizeof(mapentry), mapentry, sizeof(mapentry)); in strictValidation_data()
2057 for (int i = 0; i < recursions; ++i) in recursionLimit_data() local
2063 for (int i = 0; i < recursions; ++i) in recursionLimit_data() local
[all …]