OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:split_index
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/ui/base/text/
text_elider.cc
160
const size_t
split_index
= email.find_last_of('@');
local
161
DCHECK_NE(
split_index
, string16::npos);
162
string16 username = email.substr(0,
split_index
);
163
string16 domain = email.substr(
split_index
+ 1);
[
all
...]
/external/libvpx/libvpx/vp9/encoder/
vp9_subexp.c
33
static int
split_index
(int i, int n, int modulus) {
function
55
// map_table[j] =
split_index
(j, MAX_PROB - 1, MODULUS_PARAM);
Completed in 39 milliseconds