/external/clang/test/Analysis/ |
malloc-overflow2.c | 10 int nentry; member in struct:table 17 t->nentry = ((t->offset_max >> 2) + 31) / 32; 18 t->table = (unsigned *)malloc(sizeof(unsigned) * t->nentry); // expected-warning {{the computation of the size of the memory allocation may overflow}} 25 return t->nentry; 29 t->nentry = (sizeof(struct table) * 2 + 31) / 32; 30 t->table = (unsigned *)malloc(sizeof(unsigned) * t->nentry); // no-warning 31 return t->nentry;
|
/external/libdrm/radeon/ |
bof.h | 44 unsigned nentry; member in struct:bof
|
/external/boringssl/src/crypto/x509/ |
x509name.c | 277 X509_NAME_ENTRY *nentry; local 286 nentry = X509_NAME_ENTRY_create_by_OBJ(ne,obj,type,bytes,len); 288 return nentry;
|
/external/v8/test/cctest/ |
test-identity-map.cc | 38 void** nentry = map.Get(key1); local 39 CHECK_EQ(entry, nentry); 40 CHECK_EQ(val1, *nentry); 44 void** nentry = map.Find(key1); local 45 CHECK_EQ(entry, nentry); 46 CHECK_EQ(val1, *nentry); 58 void** nentry = map.Get(key2); local 59 CHECK_EQ(entry2, nentry); 60 CHECK_EQ(val2, *nentry); 63 void** nentry = map.Find(key2) local 68 void** nentry = map.Find(key1); local [all...] |