HomeSort by relevance Sort by last modified time
    Searched refs:eob (Results 1 - 25 of 91) sorted by null

1 2 3 4

  /external/libvpx/libvpx/vp9/common/
vp9_idct.h 42 int eob);
44 int eob);
46 int eob);
48 int eob);
50 int eob);
53 int stride, int eob);
55 int stride, int eob);
57 int stride, int eob);
61 int eob, int bd);
63 int eob, int bd)
    [all...]
vp9_idct.c 123 int eob) {
124 if (eob > 1)
132 int eob) {
133 if (eob > 1)
140 int eob) {
148 if (eob == 1)
151 else if (eob <= 12)
158 int eob) {
161 if (eob == 1)
164 else if (eob <= 10
    [all...]
  /external/libvpx/libvpx/vp8/encoder/x86/
quantize_ssse3.c 20 unsigned long eob; local
21 _BitScanReverse(&eob, mask);
22 eob++;
24 eob = 0;
25 return eob;
29 int eob; local
31 __asm__ __volatile__("bsr %1, %0" : "=r" (eob) : "r" (mask) : "flags");
33 asm volatile("bsr %1, %0" : "=r" (eob) : "r" (mask) : "flags");
35 eob++;
37 eob = 0
43 int eob, mask; local
    [all...]
quantize_sse4.c 28 eob = i; \
33 char eob = 0; local
127 *d->eob = eob;
vp8_quantize_sse2.c 31 eob = i; \
37 char eob = 0; local
142 *d->eob = eob;
227 *d->eob = 0xFF & _mm_cvtsi128_si32(x0);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/
vp9_idct.h 93 void vp9_iwht4x4_add(const int16_t *input, uint8_t *dest, int stride, int eob);
95 void vp9_idct4x4_add(const int16_t *input, uint8_t *dest, int stride, int eob);
96 void vp9_idct8x8_add(const int16_t *input, uint8_t *dest, int stride, int eob);
98 eob);
100 int eob);
103 int stride, int eob);
105 int stride, int eob);
107 int stride, int eob);
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_quantize_sse2.c 40 __m128i eob; local
93 // Scan for eob
107 eob = _mm_and_si128(iscan0, nzero_coeff0);
109 eob = _mm_max_epi16(eob, eob1);
168 // Scan for eob
185 eob = _mm_max_epi16(eob, eob0);
190 // Accumulate EOB
193 eob_shuffled = _mm_shuffle_epi32(eob, 0xe)
    [all...]
vp9_dct_ssse3.c 298 __m128i eob; local
352 // Scan for eob
366 eob = _mm_and_si128(iscan0, nzero_coeff0);
368 eob = _mm_max_epi16(eob, eob1);
428 // Scan for eob
445 eob = _mm_max_epi16(eob, eob0);
451 // Accumulate EOB
454 eob_shuffled = _mm_shuffle_epi32(eob, 0xe)
    [all...]
  /external/libvpx/libvpx/vpx_dsp/
quantize.c 23 int tmp, eob = -1; local
34 eob = 0;
36 *eob_ptr = eob + 1;
45 int eob = -1; local
59 eob = 0;
61 *eob_ptr = eob + 1;
74 int tmp, eob = -1; local
86 eob = 0;
88 *eob_ptr = eob + 1;
101 int eob = -1 local
129 int i, non_zero_count = (int)n_coeffs, eob = -1; local
181 int i, non_zero_count = (int)n_coeffs, eob = -1; local
240 int i, eob = -1; local
299 int i, eob = -1; local
    [all...]
  /external/libvpx/libvpx/vp9/encoder/
vp9_encodemb.c 101 const int eob = p->eobs[block]; local
110 int next = eob, sz = 0;
124 assert(eob <= default_eob);
131 tokens[eob][0].rate = 0;
132 tokens[eob][0].error = 0;
133 tokens[eob][0].next = default_eob;
134 tokens[eob][0].token = EOB_TOKEN;
135 tokens[eob][0].qc = 0;
136 tokens[eob][1] = tokens[eob][0]
334 uint16_t *const eob = &p->eobs[block]; local
423 uint16_t *const eob = &p->eobs[block]; local
505 uint16_t *const eob = &p->eobs[block]; local
782 uint16_t *eob = &p->eobs[block]; local
    [all...]
vp9_block.h 45 /* The [2] dimension is for whether we skip the EOB node (i.e. if previous
111 // note that token_costs is the cost when eob node is skipped
139 void (*itxm_add)(const tran_low_t *input, uint8_t *dest, int stride, int eob);
142 int eob, int bd);
  /external/tlsdate/src/common/
fmemopen.c 51 char *head, *tail, *cur, *eob; member in struct:fmemopen_cookie
101 if (p->cur > p->eob)
102 p->eob = p->cur;
122 offset += p->eob - p->head;
202 cookie->eob = cookie->head;
204 if (*cookie->eob == '\0')
206 ++cookie->eob;
209 cookie->cur = (oflags & O_APPEND) ? cookie->eob : cookie->head;
  /external/libvpx/libvpx/vpx_dsp/x86/
quantize_sse2.c 60 __m128i eob; local
132 // Scan for eob
146 eob = _mm_and_si128(iscan0, nzero_coeff0);
148 eob = _mm_max_epi16(eob, eob1);
205 // Scan for eob
222 eob = _mm_max_epi16(eob, eob0);
227 // Accumulate EOB
230 eob_shuffled = _mm_shuffle_epi32(eob, 0xe)
    [all...]
highbd_quantize_intrin_sse2.c 121 int i, eob = -1; local
174 eob = iscan[idx_arr[i]] > eob ? iscan[idx_arr[i]] : eob;
177 *eob_ptr = eob + 1;
  /external/curl/lib/
pop3.h 64 size_t eob; /* Number of bytes of the EOB (End Of Body) that member in struct:pop3_conn
smtp.h 58 size_t eob; /* Number of bytes of the EOB (End Of Body) that member in struct:SMTP
pop3.c 940 EOB string so count this is two matching bytes. This is necessary to make
941 the code detect the EOB if the only data than comes now is %2e CR LF like
943 pop3c->eob = 2;
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/encoder/
vp9_encodemb.c 120 int eob = p->eobs[block], final_eob, sz = 0; local
138 assert(eob <= default_eob);
146 tokens[eob][0].rate = 0;
147 tokens[eob][0].error = 0;
148 tokens[eob][0].next = default_eob;
149 tokens[eob][0].token = EOB_TOKEN;
150 tokens[eob][0].qc = 0;
151 *(tokens[eob] + 1) = *(tokens[eob] + 0);
152 next = eob;
326 uint16_t *const eob = &p->eobs[block]; local
493 uint16_t *eob = &p->eobs[block]; local
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
encodemb.c 187 int eob; local
218 eob = *d->eob;
228 tokens[eob][0].rate = 0;
229 tokens[eob][0].error = 0;
230 tokens[eob][0].next = 16;
231 tokens[eob][0].token = DCT_EOB_TOKEN;
232 tokens[eob][0].qc = 0;
233 *(tokens[eob] + 1) = *(tokens[eob] + 0)
    [all...]
tokenize.c 119 int eob; local
125 eob = xd->eobs[24];
128 if(!eob)
154 for (; c < eob; c++)
216 const int eob = *b->eob; local
227 if(c >= eob)
254 assert(eob <= 16);
255 for (; c < eob; c++)
291 const int eob = *b->eob local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/
encodemb.c 235 int eob; local
273 eob = *d->eob;
283 tokens[eob][0].rate = 0;
284 tokens[eob][0].error = 0;
285 tokens[eob][0].next = 16;
286 tokens[eob][0].token = DCT_EOB_TOKEN;
287 tokens[eob][0].qc = 0;
288 *(tokens[eob] + 1) = *(tokens[eob] + 0)
    [all...]
quantize.c 24 int i, rc, eob; local
39 eob = -1;
61 eob = i; /* last nonzero coeffs */
65 *d->eob = (char)(eob + 1);
72 int i, rc, eob; local
81 eob = -1;
97 eob = i; /* last nonzero coeffs */
100 *d->eob = (char)(eob + 1)
108 int i, rc, eob; local
163 int eob; local
220 int i, rc, eob; local
    [all...]
tokenize.c 119 int eob; local
125 eob = xd->eobs[24];
128 if(!eob)
154 for (; c < eob; c++)
216 const int eob = *b->eob; local
227 if(c >= eob)
254 assert(eob <= 16);
255 for (; c < eob; c++)
291 const int eob = *b->eob local
    [all...]
  /external/libvpx/libvpx/vp8/encoder/mips/msa/
quantize_msa.c 20 int32_t cnt, eob; local
37 eob = -1;
73 eob = (15 - cnt);
79 eob = (7 - (cnt - 8));
84 return (int8_t)(eob + 1);
98 int32_t cnt, eob; local
118 eob = -1;
168 eob = cnt;
188 eob = cnt;
211 return (int8_t)(eob + 1)
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/encoder/x86/
quantize_ssse3.asm 83 movdqa xmm2, xmm1 ;store y for getting eob
101 pcmpgtw xmm2, xmm1 ;calculate eob
115 cmp edx, 0 ;if all 0, eob=0
118 mov BYTE PTR [rcx], al ;store eob

Completed in 403 milliseconds

1 2 3 4