Home
last modified time | relevance | path

Searched refs:sTable (Results 1 – 2 of 2) sorted by relevance

/external/clang/test/Analysis/
Dmalloc-sizeof.c39 static const int sTable[10]; in mallocArraySize() local
41 int *table = malloc(sizeof sTable); in mallocArraySize()
49 static const double sTable[10]; in mallocWrongArraySize() local
50 …int *table = malloc(sizeof sTable); // expected-warning {{Result of 'malloc' is converted to a poi… in mallocWrongArraySize()
/external/libnfc-nci/halimpl/bcm2079x/adaptation/
Dandroid_logmsg.cpp32 static const char* sTable = "0123456789abcdef"; variable
83 hexString [j++] = sTable [(*data >> 4) & 0xf]; in ToHex()
84 hexString [j++] = sTable [*data & 0xf]; in ToHex()
191 **str = sTable[(*data >> 4) & 0xf]; in byte2hex()
193 **str = sTable[*data & 0xf]; in byte2hex()