HomeSort by relevance Sort by last modified time
    Searched defs:nentry (Results 1 - 3 of 3) sorted by null

  /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 287 X509_NAME_ENTRY *nentry; local
295 nentry = X509_NAME_ENTRY_create_by_OBJ(ne, obj, type, bytes, len);
297 return nentry;

Completed in 1239 milliseconds