OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:longindex
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/icu/source/test/perf/usetperf/
bitset.cpp
31
uint32_t
longIndex
= bitIndex >> 5;
33
return (
longIndex
< len) ? (((data[
longIndex
] >> bitInLong) & 1) != 0)
38
uint32_t
longIndex
= bitIndex >> 5;
40
if (
longIndex
>= len) {
41
ensureCapacity(
longIndex
+1);
43
data[
longIndex
] |= (1 << bitInLong);
/external/icu4c/test/perf/usetperf/
bitset.cpp
31
uint32_t
longIndex
= bitIndex >> 5;
33
return (
longIndex
< len) ? (((data[
longIndex
] >> bitInLong) & 1) != 0)
38
uint32_t
longIndex
= bitIndex >> 5;
40
if (
longIndex
>= len) {
41
ensureCapacity(
longIndex
+1);
43
data[
longIndex
] |= (1 << bitInLong);
/external/marisa-trie/tools/
cmdopt.c
176
h->
longindex
= cmdopt_match(h);
177
if (h->
longindex
< 0) {
183
option = h->longopts + h->
longindex
;
214
h->
longindex
= 0;
259
h->
longindex
= 0;
274
h->longopts[h->
longindex
].name);
289
h->longopts[h->
longindex
].name, h->optarg);
cmdopt.h
43
int
longindex
; // Index of the last long option.
member in struct:cmdopt_t_
/external/marisa-trie/v0_1_5/tools/
cmdopt.c
176
h->
longindex
= cmdopt_match(h);
177
if (h->
longindex
< 0) {
183
option = h->longopts + h->
longindex
;
214
h->
longindex
= 0;
259
h->
longindex
= 0;
274
h->longopts[h->
longindex
].name);
289
h->longopts[h->
longindex
].name, h->optarg);
cmdopt.h
43
int
longindex
; // Index of the last long option.
member in struct:cmdopt_t_
Completed in 4115 milliseconds