/third_party/giflib/ |
D | gifinto.c | 27 #define STRLEN 512 macro 79 char **FileName = NULL, FoutTmpName[STRLEN+1], FullPath[STRLEN+1], *p; in main() 116 if ( strlen(*FileName) > STRLEN-1 ) GIF_EXIT("Filename too long."); in main() 118 strncpy(FullPath, *FileName, STRLEN); in main() 127 if ( strlen(FullPath) > STRLEN-1 ) GIF_EXIT("Filename too long."); in main() 128 strncpy(FoutTmpName, FullPath, STRLEN); /* First setup the Path */ in main() 130 …if ( (strlen(FoutTmpName) + strlen(DEFAULT_TMP_NAME)) > STRLEN-1 ) GIF_EXIT("Filename too long."); in main() 165 char DefaultName[STRLEN+1]; in main() 167 if ( (strlen(FullPath) + strlen(DEFAULT_OUT_NAME)) > STRLEN-1 ) GIF_EXIT("Filename too long."); in main() 168 strncpy(DefaultName, FullPath, STRLEN); in main() [all …]
|
/third_party/ltp/testcases/kernel/syscalls/nftw/ |
D | nftw.h | 50 #define STRLEN 512 macro 69 char contents[STRLEN];
|
D | nftw64.h | 49 #define STRLEN 512 macro 68 char contents[STRLEN];
|
D | tools64.c | 190 static char s[STRLEN]; in ftw_mnemonic()
|
D | tools.c | 190 static char s[STRLEN]; in ftw_mnemonic()
|
/third_party/mbedtls/programs/ssl/ |
D | ssl_context_info.c | 514 enum { STRLEN = 4096 }; in print_deserialized_ssl_cert() enumerator 517 char str[STRLEN]; in print_deserialized_ssl_cert() 525 mbedtls_strerror( ret, str, STRLEN ); in print_deserialized_ssl_cert() 536 ret = mbedtls_x509_crt_info( str, STRLEN, "\t", current ); in print_deserialized_ssl_cert() 539 mbedtls_strerror( ret, str, STRLEN ); in print_deserialized_ssl_cert()
|
/third_party/icu/icu4c/source/test/intltest/ |
D | utxttest.cpp | 1437 const int STRLEN = 90; in Ticket6847() local 1438 UChar s[STRLEN+1]; in Ticket6847() 1439 u_memset(s, 0x41, STRLEN); in Ticket6847() 1440 s[STRLEN] = 0; in Ticket6847() 1452 TEST_ASSERT(count < STRLEN); in Ticket6847() 1453 if (count >= STRLEN) { in Ticket6847() 1460 TEST_ASSERT(count == STRLEN); in Ticket6847() 1462 TEST_ASSERT(nativeIndex == STRLEN); in Ticket6847()
|
/third_party/ltp/lib/ |
D | parse_opts.c | 109 #define STRLEN 2048 macro 111 static char Mesg2[STRLEN]; /* holds possible return string */
|
/third_party/flutter/skia/third_party/externals/icu/source/common/ |
D | ustring.cpp | 1491 #define STRING_HASH(TYPE, STR, STRLEN, DEREF) \ argument 1495 int32_t len = (int32_t)(STRLEN); \
|
/third_party/skia/third_party/externals/icu/source/common/ |
D | ustring.cpp | 1508 #define STRING_HASH(TYPE, STR, STRLEN, DEREF) UPRV_BLOCK_MACRO_BEGIN { \ argument 1512 int32_t len = (int32_t)(STRLEN); \
|
/third_party/node/deps/icu-small/source/common/ |
D | ustring.cpp | 1506 #define STRING_HASH(TYPE, STR, STRLEN, DEREF) UPRV_BLOCK_MACRO_BEGIN { \ argument 1510 int32_t len = (int32_t)(STRLEN); \
|
/third_party/icu/icu4c/source/common/ |
D | ustring.cpp | 1508 #define STRING_HASH(TYPE, STR, STRLEN, DEREF) UPRV_BLOCK_MACRO_BEGIN { \ argument 1512 int32_t len = (int32_t)(STRLEN); \
|
/third_party/sqlite/src/ |
D | shell.c | 9291 #define STRLEN (int)strlen macro 9480 int nKey = STRLEN(zKey); in idxHashAdd() 9482 int nVal = (zVal ? STRLEN(zVal) : 0); in idxHashAdd() 9486 if( STRLEN(pEntry->zKey)==nKey && 0==memcmp(pEntry->zKey, zKey, nKey) ){ in idxHashAdd() 9514 if( nKey<0 ) nKey = STRLEN(zKey); in idxHashFind() 9518 if( STRLEN(pEntry->zKey)==nKey && 0==memcmp(pEntry->zKey, zKey, nKey) ){ in idxHashFind() 9543 int nColl = STRLEN(zColl); in idxNewConstraint() 9625 int n = STRLEN(zIn); in expertDequote() 9944 int nTab = STRLEN(zTab); in idxGetTableInfo() 9955 nByte += 1 + STRLEN(zCol); in idxGetTableInfo() [all …]
|
/third_party/pcre2/pcre2/src/ |
D | pcre2test.c | 1531 #define STRLEN(p) ((test_mode == PCRE8_MODE)? ((int)strlen((char *)p)) : \ macro 1992 #define STRLEN(p) ((test_mode == G(G(PCRE,BITONE),_MODE))? \ macro 2122 #define STRLEN(p) (int)strlen((char *)p) macro 2229 #define STRLEN(p) (int)strlen16((PCRE2_SPTR16)p) macro 2336 #define STRLEN(p) (int)strlen32((PCRE2_SPTR32)p) macro 4528 uint32_t length = (uint32_t)STRLEN(nametable + imm2_size); in show_pattern_info()
|
/third_party/chromium/patch/ |
D | 0003-3.2-Beta3-1115.patch | 88079 - int nTab = STRLEN(zTab); 88090 + nTab = STRLEN(zTab); 88100 nByte += 1 + STRLEN(zCol); 88107 - int nCopy = STRLEN(zCol) + 1; 88110 + nCopy = STRLEN(zCol) + 1; 125714 - int nTab = STRLEN(zTab); 125725 + nTab = STRLEN(zTab); 125735 nByte += 1 + STRLEN(zCol); 125742 - int nCopy = STRLEN(zCol) + 1; 125745 + nCopy = STRLEN(zCol) + 1; [all …]
|