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
179
#define
LINE_SIZE
16 // 8 or 16
183
assert(size %
LINE_SIZE
== 0);
184
for (i = 0; i < size; i +=
LINE_SIZE
) {
187
#if (
LINE_SIZE
== 16)
193
#if (
LINE_SIZE
== 16)
199
#if (
LINE_SIZE
== 16)
208
assert(size %
LINE_SIZE
== 0);
209
for (i = 0; i < size; i +=
LINE_SIZE
) {
212
#if (
LINE_SIZE
== 16)
218
#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 190 milliseconds