Home
last modified time | relevance | path

Searched full:check (Results 1 – 11 of 11) sorted by relevance

/tinycbor-2.7.6/
DMakefile.configure22 configure: $(foreach it,$(ALLTESTS),check-$(it))
24 check-%:
25 @echo $(subst check-,,$@)-tested := 1 $(OUT)
26 $(if $(V),,@)if printf "$($(subst check-,PROGRAM-,$@))" | \
27 $(CC) -xc $($(subst check-,CCFLAGS-,$@)) -o /dev/null - $(if $(V),,>/dev/null 2>&1); \
29 echo $(subst check-,,$@)-pass := 1 $(OUT); \
DMakefile.nmake28 check: tests\Makefile lib\tinycbor.lib
29 cd tests & $(MAKE) check
31 cd tests & set TESTARGS=-silent & $(MAKE) -s check
DMakefile84 # Check that QMAKE is Qt 5
129 check: tests/Makefile | $(BINLIBRARY) target
130 $(MAKE) -C tests check
132 TESTARGS=-silent $(MAKE) -f $(MAKEFILE) -s check
219 .PHONY: all check silentcheck configure install uninstall
D.appveyor.yml30 if /i "%tests%"=="1" nmake -s -nologo check
D.travis.yml59 - cd tests && make check -k
/tinycbor-2.7.6/include/tinycbor/
Dconfig.h22 /** This option specifies whether a check user exists for a cbor encoder **/
/tinycbor-2.7.6/src/
Dcborparser.c99 * The code above does not execute a range-check either: it is possible that
744 * Unlike cbor_value_get_int64(), this function performs a check to see if the
758 /* Check before converting, as the standard says (C11 6.3.1.3 paragraph 3): in cbor_value_get_int64_checked()
783 * Unlike cbor_value_get_int(), this function performs a check to see if the
797 /* Check before converting, as the standard says (C11 6.3.1.3 paragraph 3): in cbor_value_get_int_checked()
871 * also check whether that is the case by using cbor_value_is_length_known().
1134 * also check whether that is the case by using cbor_value_is_length_known().
1161 * also check whether that is the case by using cbor_value_is_length_known().
Dparsetags.pl88 print "\n/* #define the constants so we can check with #ifdef */";
Dcborencoder.c94 * In addition, all functions check whether the buffer has enough bytes to
335 /* check if this is a valid simple type */ in cbor_encode_simple_value()
/tinycbor-2.7.6/tests/tojson/
Dtst_tojson.cpp227 // check that we consumed everything in compareOne_real()
667 // check that we consumed everything in compareMetaData()
/tinycbor-2.7.6/tests/parser/
Dtst_parser.cpp223 // check that the errors are the same in compareOne_real()
226 // check that we consumed everything in compareOne_real()
1511 // check for pointer additions wrapping over the limit of the address space in addValidationData()
2098 // check that it is valid: in recursionLimit()