OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:vecsize
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/brotli/src/brotli/enc/
block_splitter.cc
158
int
vecsize
= vec.size();
local
159
double* insert_cost = new double[kSize *
vecsize
];
160
memset(insert_cost, 0, sizeof(insert_cost[0]) * kSize *
vecsize
);
162
for (int j = 0; j <
vecsize
; ++j) {
163
insert_cost[i *
vecsize
+ j] =
167
double *cost = new double[
vecsize
];
168
memset(cost, 0, sizeof(cost[0]) *
vecsize
);
169
bool* switch_signal = new bool[length *
vecsize
];
170
memset(switch_signal, 0, sizeof(switch_signal[0]) * length *
vecsize
);
178
int ix = byte_ix *
vecsize
;
[
all
...]
/external/chromium_org/third_party/re2/util/
pcre.cc
467
int
vecsize
) const {
507
vecsize
);
515
rc =
vecsize
/ 2;
550
<< ",
vecsize
=" <<
vecsize
;
local
564
int
vecsize
) const {
565
assert((1 + n) * 3 <=
vecsize
); // results + PCRE workspace
566
int matches = TryMatch(text, 0, anchor, true, vec,
vecsize
);
603
size_t const
vecsize
= (1 + n) * 3; // results + PCRE workspace
local
605
int *vec = new int[
vecsize
];
[
all
...]
pcre.h
472
// Match against "text", filling in "vec" (up to "
vecsize
" * 2/3) with
488
int
vecsize
) const;
505
int
vecsize
) const;
Completed in 114 milliseconds