Searched refs:nentry (Results 1 – 5 of 5) sorted by relevance
/external/clang/test/Analysis/ |
D | malloc-overflow2.c | 10 int nentry; member 17 t->nentry = ((t->offset_max >> 2) + 31) / 32; in table_build() 18 …t->table = (unsigned *)malloc(sizeof(unsigned) * t->nentry); // expected-warning {{the computation… in table_build() 25 return t->nentry; in table_build() 29 t->nentry = (sizeof(struct table) * 2 + 31) / 32; in table_build_1() 30 t->table = (unsigned *)malloc(sizeof(unsigned) * t->nentry); // no-warning in table_build_1() 31 return t->nentry; in table_build_1()
|
/external/v8/test/cctest/ |
D | test-identity-map.cc | 38 void** nentry = map.Get(key1); in TestGetFind() local 39 CHECK_EQ(entry, nentry); in TestGetFind() 40 CHECK_EQ(val1, *nentry); in TestGetFind() 44 void** nentry = map.Find(key1); in TestGetFind() local 45 CHECK_EQ(entry, nentry); in TestGetFind() 46 CHECK_EQ(val1, *nentry); in TestGetFind() 58 void** nentry = map.Get(key2); in TestGetFind() local 59 CHECK_EQ(entry2, nentry); in TestGetFind() 60 CHECK_EQ(val2, *nentry); in TestGetFind() 63 void** nentry = map.Find(key2); in TestGetFind() local [all …]
|
/external/boringssl/src/crypto/x509/ |
D | x509name.c | 277 X509_NAME_ENTRY *nentry; in X509_NAME_ENTRY_create_by_txt() local 286 nentry = X509_NAME_ENTRY_create_by_OBJ(ne,obj,type,bytes,len); in X509_NAME_ENTRY_create_by_txt() 288 return nentry; in X509_NAME_ENTRY_create_by_txt()
|
/external/libdrm/radeon/ |
D | bof.c | 38 if (bof->array_size < bof->nentry) in bof_entry_grow() 40 array = realloc(bof->array, (bof->nentry + 16) * sizeof(void*)); in bof_entry_grow() 44 bof->nentry += 16; in bof_entry_grow()
|
D | bof.h | 44 unsigned nentry; member
|