Home
last modified time | relevance | path

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

/external/chromium_org/third_party/icu/source/test/perf/usetperf/
Dbitset.cpp31 uint32_t longIndex = bitIndex >> 5; in get() local
33 return (longIndex < len) ? (((data[longIndex] >> bitInLong) & 1) != 0) in get()
38 uint32_t longIndex = bitIndex >> 5; in set() local
40 if (longIndex >= len) { in set()
41 ensureCapacity(longIndex+1); in set()
43 data[longIndex] |= (1 << bitInLong); in set()
/external/icu4c/test/perf/usetperf/
Dbitset.cpp31 uint32_t longIndex = bitIndex >> 5; in get() local
33 return (longIndex < len) ? (((data[longIndex] >> bitInLong) & 1) != 0) in get()
38 uint32_t longIndex = bitIndex >> 5; in set() local
40 if (longIndex >= len) { in set()
41 ensureCapacity(longIndex+1); in set()
43 data[longIndex] |= (1 << bitInLong); in set()