OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LINE_SIZE
(Results
1 - 2
of
2
) sorted by null
/external/webp/src/dsp/
lossless_enc_sse2.c
173
#define
LINE_SIZE
16 // 8 or 16
177
assert(size %
LINE_SIZE
== 0);
178
for (i = 0; i < size; i +=
LINE_SIZE
) {
181
#if (
LINE_SIZE
== 16)
187
#if (
LINE_SIZE
== 16)
193
#if (
LINE_SIZE
== 16)
202
assert(size %
LINE_SIZE
== 0);
203
for (i = 0; i < size; i +=
LINE_SIZE
) {
206
#if (
LINE_SIZE
== 16)
212
#if (
LINE_SIZE
== 16
[
all
...]
/external/webrtc/webrtc/base/
logging.cc
460
const size_t
LINE_SIZE
= 24;
461
char hex_line[
LINE_SIZE
* 9 / 4 + 2], asc_line[
LINE_SIZE
+ 1];
465
size_t line_len = std::min(len,
LINE_SIZE
);
Completed in 1457 milliseconds