/net-tools-3.5.0/tinydtls-0.8.2/sha2/ |
D | sha2prog.c | 51 int kl, l, fd, ac; in main() local 101 while ((l = read(fd,buf,BUFLEN)) > 0) { in main() 102 kl += l; in main() 103 SHA256_Update(&ctx256, (unsigned char*)buf, l); in main() 104 SHA384_Update(&ctx384, (unsigned char*)buf, l); in main() 105 SHA512_Update(&ctx512, (unsigned char*)buf, l); in main()
|
D | sha2.c | 202 #define MEMSET_BZERO(p,l) memset((p), 0, (l)) argument 203 #define MEMCPY_BCOPY(d,s,l) memcpy((d), (s), (l)) argument 206 #define MEMSET_BZERO(p,l) bzero((p), (l)) argument 207 #define MEMCPY_BCOPY(d,s,l) bcopy((s), (d), (l)) argument
|
/net-tools-3.5.0/tinydtls-0.8.2/ |
D | t_list.h | 118 struct list *l; in list_pop() local 119 l = *list; in list_pop() 120 if(l) in list_pop() 121 list_remove(list, l); in list_pop() 123 return l; in list_pop()
|
/net-tools-3.5.0/libcoap/include/coap/ |
D | t_list.h | 117 struct list *l; in list_pop() local 118 l = (struct list*)*the_list; in list_pop() 119 if(l) in list_pop() 120 list_remove(the_list, l); in list_pop() 122 return l; in list_pop()
|
D | str.h | 20 #define COAP_SET_STR(st,l,v) { (st)->length = (l), (st)->s = (v); } argument
|
/net-tools-3.5.0/mbedtls-2.4.0/tests/suites/ |
D | test_suite_asn1write.data | 19 ASN.1 Write Octet String #6 (l = 128, large buffer) 22 ASN.1 Write Octet String #7 (l = 128, buffer just fits) 25 ASN.1 Write Octet String #8 (l = 128, buffer too small for tag) 28 ASN.1 Write Octet String #9 (l = 128, buffer too small for len) 31 ASN.1 Write Octet String #9 (l = 128, buffer too small for string)
|
D | helpers.function | 186 unsigned char l, h; 191 l = *ibuf % 16; 198 if( l < 10 ) 199 *obuf++ = '0' + l; 201 *obuf++ = 'a' + l - 10;
|
/net-tools-3.5.0/libcoap/tests/ |
D | test_options.c | 831 int l; in t_filter_option3() local 836 for (l = 0; l < COAP_OPT_FILTER_LONG; l++) { in t_filter_option3() 837 CU_ASSERT(coap_option_filter_set(filter, 256 + l) == 1); in t_filter_option3() 853 for (l = 0; l < COAP_OPT_FILTER_LONG; l++) { in t_filter_option3() 854 CU_ASSERT(coap_option_filter_get(filter, 256 + l + 1) == 1); in t_filter_option3() 858 for (l = 0; l < COAP_OPT_FILTER_SHORT; l++) { in t_filter_option3() 859 CU_ASSERT(coap_option_filter_set(filter, l) == 1); in t_filter_option3() 875 for (l = 0; l < COAP_OPT_FILTER_SHORT; l++) { in t_filter_option3() 876 CU_ASSERT(coap_option_filter_get(filter, l + 1) == 1); in t_filter_option3()
|
/net-tools-3.5.0/libcoap/src/ |
D | option.c | 386 size_t l = 1; in coap_opt_encode() local 388 l = coap_opt_setheader(opt, maxlen, delta, length); in coap_opt_encode() 389 assert(l <= maxlen); in coap_opt_encode() 391 if (!l) { in coap_opt_encode() 396 maxlen -= l; in coap_opt_encode() 397 opt += l; in coap_opt_encode() 407 return l + length; in coap_opt_encode()
|
/net-tools-3.5.0/mbedtls-2.4.0/scripts/data_files/ |
D | vs6-main-template.dsp | 45 # ADD BASE RSC /l 0x40c /d "NDEBUG" 46 # ADD RSC /l 0x40c /d "NDEBUG" 68 # ADD BASE RSC /l 0x40c /d "_DEBUG" 69 # ADD RSC /l 0x40c /d "_DEBUG"
|
D | vs6-app-template.dsp | 45 # ADD BASE RSC /l 0x40c /d "NDEBUG" 46 # ADD RSC /l 0x40c /d "NDEBUG" 68 # ADD BASE RSC /l 0x40c /d "_DEBUG" 69 # ADD RSC /l 0x40c /d "_DEBUG"
|
/net-tools-3.5.0/mbedtls-2.4.0/library/ |
D | ecp.c | 1082 mbedtls_mpi l, ll; in ecp_randomize_jac() local 1086 mbedtls_mpi_init( &l ); mbedtls_mpi_init( &ll ); in ecp_randomize_jac() 1091 mbedtls_mpi_fill_random( &l, p_size, f_rng, p_rng ); in ecp_randomize_jac() 1093 while( mbedtls_mpi_cmp_mpi( &l, &grp->P ) >= 0 ) in ecp_randomize_jac() 1094 MBEDTLS_MPI_CHK( mbedtls_mpi_shift_r( &l, 1 ) ); in ecp_randomize_jac() 1099 while( mbedtls_mpi_cmp_int( &l, 1 ) <= 0 ); in ecp_randomize_jac() 1102 MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mpi( &pt->Z, &pt->Z, &l ) ); MOD_MUL( pt->Z ); in ecp_randomize_jac() 1105 MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mpi( &ll, &l, &l ) ); MOD_MUL( ll ); in ecp_randomize_jac() 1109 MBEDTLS_MPI_CHK( mbedtls_mpi_mul_mpi( &ll, &ll, &l ) ); MOD_MUL( ll ); in ecp_randomize_jac() 1113 mbedtls_mpi_free( &l ); mbedtls_mpi_free( &ll ); in ecp_randomize_jac() [all …]
|
/net-tools-3.5.0/ |
D | loop-pppd.sh | 25 PTS_DEV=`find $DEV -ls -type l | awk -F' ' '{ print $13 }'`
|
/net-tools-3.5.0/libcoap/examples/ |
D | etsi_iot_01.c | 246 size_t l = 6 + sizeof(void *); in hnd_post_test() local 260 uri = (coap_dynamic_uri_t *)coap_malloc(sizeof(coap_dynamic_uri_t) + l); in hnd_post_test() 270 uri->length = min(l, snprintf((char *)uri->data, l, "test/%p", test_payload)); in hnd_post_test()
|
/net-tools-3.5.0/tinydtls-0.8.2/ecc/ |
D | ecc.c | 164 uint64_t l; in fieldMult() local 167 l = (uint64_t)x[n]*(uint64_t)y[k]; in fieldMult() 168 temp[n+k] = l&0xFFFFFFFF; in fieldMult() 169 temp[n+k+1] = l>>32; in fieldMult()
|
/net-tools-3.5.0/tinydtls-0.8.2/doc/ |
D | Doxyfile.in | 511 # doxygen's defaults, run doxygen with the -l option. You can optionally specify a
|
/net-tools-3.5.0/mbedtls-2.4.0/doxygen/ |
D | mbedtls.doxyfile | 590 # that represents doxygen's defaults, run doxygen with the -l option.
|
/net-tools-3.5.0/mbedtls-2.4.0/ |
D | ChangeLog | 560 * Fix handling of symlinks by "make install" (found by Gaël PORTAY).
|
/net-tools-3.5.0/libcoap/doc/ |
D | Doxyfile.in | 667 # that represents doxygen's defaults, run doxygen with the -l option. You can
|