HomeSort by relevance Sort by last modified time
    Searched refs:setbits (Results 1 - 12 of 12) sorted by null

  /external/llvm/lib/Support/
regfree.c 67 if (g->setbits != NULL)
68 free((char *)g->setbits);
regex2.h 136 uch *setbits; /* -> uch[csetsize][ncsets/CHAR_BIT] */ member in struct:re_guts
regcomp.c 206 g->setbits = NULL;
1080 ptr = (uch *)realloc((char *)p->g->setbits, nbytes);
1083 p->g->setbits = ptr;
1086 p->g->sets[i].ptr = p->g->setbits + css*(i/CHAR_BIT);
1088 (void) memset((char *)p->g->setbits + (nbytes - css), 0, css);
1091 if (p->g->sets == NULL || p->g->setbits == NULL)
1095 cs->ptr = p->g->setbits + css*((no)/CHAR_BIT);
1105 free(p->g->setbits);
1106 p->g->setbits = NULL;
1258 for (i = 0, col = g->setbits; i < ncols; i++, col += g->csetsize
    [all...]
  /ndk/sources/host-tools/ndk-stack/regex/
regfree.c 68 if (g->setbits != NULL)
69 free((char *)g->setbits);
regex2.h 133 uch *setbits; /* -> uch[csetsize][ncsets/CHAR_BIT] */ member in struct:re_guts
regcomp.c 198 g->setbits = NULL;
1044 ptr = (uch *)realloc((char *)p->g->setbits, nbytes);
1047 p->g->setbits = (uch*)ptr;
1050 p->g->sets[i].ptr = p->g->setbits + css*(i/CHAR_BIT);
1052 (void) memset((char *)p->g->setbits + (nbytes - css), 0, css);
1055 if (p->g->sets == NULL || p->g->setbits == NULL)
1059 cs->ptr = p->g->setbits + css*((no)/CHAR_BIT);
1069 free(p->g->setbits);
1070 p->g->setbits = NULL;
1222 for (i = 0, col = g->setbits; i < ncols; i++, col += g->csetsize
    [all...]
  /bionic/libc/upstream-netbsd/lib/libc/regex/
regfree.c 124 if (g->setbits != NULL)
125 free(g->setbits);
regex2.h 185 uch *setbits; /* -> uch[csetsize][ncsets/CHAR_BIT] */ member in struct:re_guts
regcomp.c 289 g->setbits = NULL;
1255 if (p->g->setbits == NULL)
1256 p->g->setbits = malloc(nbytes);
1258 p->g->setbits = realloc(p->g->setbits, nbytes);
1259 /* xxx this isn't right if setbits is now NULL */
1261 p->g->sets[i].ptr = p->g->setbits + css*(i/CHAR_BIT);
1263 if (p->g->sets != NULL && p->g->setbits != NULL)
1264 (void) memset((char *)p->g->setbits + (nbytes - css),
1276 cs->ptr = p->g->setbits + css*((no)/CHAR_BIT)
    [all...]
  /external/chromium_org/third_party/smhasher/src/
KeysetTest.h 165 bool SparseKeyTest ( hashfunc<hashtype> hash, const int setbits, bool inclusive, bool testColl, bool testDist, bool drawDiagram )
167 printf("Keyset 'Sparse' - %d-bit keys with %s %d bits set - ",keybits, inclusive ? "up to" : "exactly", setbits);
185 SparseKeygenRecurse(hash,0,setbits,inclusive,k,hashes);
  /external/chromium_org/third_party/skia/third_party/lua/src/
lgc.h 77 #define setbits(x,m) ((x) |= (m)) macro
81 #define l_setbit(x,b) setbits(x, bitmask(b))
  /external/chromium_org/v8/src/arm64/
macro-assembler-arm64.h 888 static const uint64_t setbits = CountSetBits(Field::kMask, 32); local
    [all...]

Completed in 159 milliseconds