OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:split_index
(Results
1 - 8
of
8
) sorted by null
/external/jemalloc/test/unit/
qr.c
6
#define
SPLIT_INDEX
5
195
if (i <
SPLIT_INDEX
) {
197
entries[(i+j) %
SPLIT_INDEX
].id,
200
assert_c_eq(t->id, entries[(i+j-
SPLIT_INDEX
) %
201
(NENTRIES-
SPLIT_INDEX
) +
SPLIT_INDEX
].id,
218
qr_split(&entries[0], &entries[
SPLIT_INDEX
], link);
221
qr_meld(&entries[0], &entries[
SPLIT_INDEX
], link);
224
qr_meld(&entries[0], &entries[
SPLIT_INDEX
], link);
227
qr_split(&entries[0], &entries[
SPLIT_INDEX
], link)
[
all
...]
/external/chromium_org/ui/gfx/geometry/
r_tree_base.cc
248
size_t
split_index
=
253
return DivideChildren(low_bounds, high_bounds, sort,
split_index
);
442
size_t
split_index
) {
445
DCHECK_LT(
split_index
, low_bounds.size());
446
DCHECK_GT(
split_index
, 0U);
450
set_rect(low_bounds[
split_index
- 1]);
451
sibling->set_rect(high_bounds[
split_index
]);
458
sorted_children.begin() +
split_index
);
460
sorted_children.begin() +
split_index
,
r_tree_base.h
233
// Returns a new node containing children [
split_index
, count()) within
234
// |sorted_children|. Children before |
split_index
| remain with |this|.
239
size_t
split_index
);
r_tree_unittest.cc
180
size_t
split_index
) {
182
low_bounds, high_bounds, sorted_children,
split_index
);
[
all
...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/
vp9_subexp.c
34
// map_table[j] =
split_index
(j, MAX_PROB - 1, MODULUS_PARAM);
/external/libvpx/libvpx/vp9/encoder/
vp9_subexp.c
34
// map_table[j] =
split_index
(j, MAX_PROB - 1, MODULUS_PARAM);
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_subexp.c
34
// map_table[j] =
split_index
(j, MAX_PROB - 1, MODULUS_PARAM);
/external/chromium_org/ui/gfx/
text_elider.cc
58
const size_t
split_index
= email.find_last_of('@');
local
59
DCHECK_NE(
split_index
, base::string16::npos);
60
base::string16 username = email.substr(0,
split_index
);
61
base::string16 domain = email.substr(
split_index
+ 1);
Completed in 339 milliseconds