OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:start_modulo
(Results
1 - 2
of
2
) sorted by null
/external/aac/libDRCdec/src/
drcGainDec_process.cpp
158
int
start_modulo
, start_offset;
local
168
/*
start_modulo
= (start+timePrev)%stepsize; */ /* stepsize is a power of 2 */
169
start_modulo
= (start + timePrev) & (stepsize - 1);
170
start_offset = (
start_modulo
? stepsize -
start_modulo
: 0);
/system/update_engine/
test_http_server.cc
247
size_t
start_modulo
= start_offset % line_len;
local
248
if (
start_modulo
) {
249
string partial = line.substr(
start_modulo
, remaining_len);
Completed in 94 milliseconds