Searched refs:nentry (Results 1 – 7 of 7) 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/llvm-project/clang/test/Analysis/ |
D | malloc-overflow2.c | 11 int nentry; member 18 t->nentry = ((t->offset_max >> 2) + 31) / 32; in table_build() 19 …t->table = (unsigned *)malloc(sizeof(unsigned) * t->nentry); // expected-warning {{the computation… in table_build() 26 return t->nentry; in table_build() 30 t->nentry = (sizeof(struct table) * 2 + 31) / 32; in table_build_1() 31 t->table = (unsigned *)malloc(sizeof(unsigned) * t->nentry); // no-warning in table_build_1() 32 return t->nentry; in table_build_1()
|
/external/python/cpython2/Lib/plat-mac/ |
D | applesingle.py | 54 magic, version, ig, nentry = struct.unpack(AS_HEADER_FORMAT, header) 60 print 'Entries: %d' % (nentry,) 65 if nentry <= 0: 67 headers = [fileobj.read(AS_ENTRY_LENGTH) for i in xrange(nentry)]
|
/external/rust/crates/quiche/deps/boringssl/src/crypto/x509/ |
D | x509name.c | 287 X509_NAME_ENTRY *nentry; in X509_NAME_ENTRY_create_by_txt() local 295 nentry = X509_NAME_ENTRY_create_by_OBJ(ne, obj, type, bytes, len); in X509_NAME_ENTRY_create_by_txt() 297 return nentry; in X509_NAME_ENTRY_create_by_txt()
|
/external/boringssl/src/crypto/x509/ |
D | x509name.c | 288 X509_NAME_ENTRY *nentry; in X509_NAME_ENTRY_create_by_txt() local 296 nentry = X509_NAME_ENTRY_create_by_OBJ(ne, obj, type, bytes, len); in X509_NAME_ENTRY_create_by_txt() 298 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
|