Searched refs:a_ptr (Results 1 - 22 of 22) sorted by relevance

/external/webrtc/src/common_audio/signal_processing/
H A Dfilter_ar_fast_q12.c32 G_CONST WebRtc_Word16 *a_ptr = &A[0]; local
35 o = WEBRTC_SPL_MUL_16_16(*x_ptr++, *a_ptr++);
39 o -= WEBRTC_SPL_MUL_16_16(*a_ptr++,*state_ptr--);
H A Dfilter_ar.c42 G_CONST WebRtc_Word16* a_ptr = &a[1]; local
54 o -= WEBRTC_SPL_MUL_16_16(*a_ptr, *filtered_ptr--);
55 oLOW -= WEBRTC_SPL_MUL_16_16(*a_ptr++, *filtered_low_ptr--);
59 o -= WEBRTC_SPL_MUL_16_16(*a_ptr, *state_ptr--);
60 oLOW -= WEBRTC_SPL_MUL_16_16(*a_ptr++, *state_low_ptr--);
/external/lldb/test/expression_command/formatters/
H A Dformatters.py3 a_ptr = valobj.GetChildMemberWithName('a_ptr');
12 return 'a = ' + str(a.GetValueAsUnsigned(0)) + ', a_ptr = ' + \
13 str(a_ptr.GetValueAsUnsigned(0)) + ' -> ' + str(a_ptr.Dereference().GetValueAsUnsigned(0)) + \
H A Dmain.cpp23 int* a_ptr; member in struct:foo
27 a_ptr(new int(x+1)),
41 *(foo1.a_ptr) = 9999;
/external/chromium_org/third_party/webrtc/common_audio/signal_processing/
H A Dfilter_ar.c42 const int16_t* a_ptr = &a[1]; local
54 o -= WEBRTC_SPL_MUL_16_16(*a_ptr, *filtered_ptr--);
55 oLOW -= WEBRTC_SPL_MUL_16_16(*a_ptr++, *filtered_low_ptr--);
59 o -= WEBRTC_SPL_MUL_16_16(*a_ptr, *state_ptr--);
60 oLOW -= WEBRTC_SPL_MUL_16_16(*a_ptr++, *state_low_ptr--);
/external/chromium_org/third_party/libwebp/enc/
H A Dpicture_tools.c93 const uint8_t* const a_ptr = pic->a; local
95 if (a_ptr == NULL) return; // nothing to do
102 if (is_transparent_area(a_ptr + off_a, pic->a_stride, SIZE)) {
148 uint8_t* const a_ptr = pic->a + y * pic->a_stride; local
150 const int alpha = a_ptr[x];
152 y_ptr[x] = BLEND(Y0, y_ptr[x], a_ptr[x]);
160 (y + 1 == pic->height) ? a_ptr : a_ptr + pic->a_stride;
165 a_ptr[2 * x + 0] + a_ptr[
[all...]
H A Dpicture_csp.c174 const uint8_t* const a_ptr,
182 const int has_alpha = CheckNonOpaque(a_ptr, width, height, step, rgb_stride);
230 a_ptr[step * x + y * rgb_stride];
340 const uint8_t* const a_ptr = import_alpha ? rgb + 3 : NULL; local
345 return ImportYUVAFromRGBA(r_ptr, g_ptr, b_ptr, a_ptr, step, rgb_stride,
356 dst[x] = MakeARGB32(import_alpha ? a_ptr[offset] : 0xff,
171 ImportYUVAFromRGBA(const uint8_t* const r_ptr, const uint8_t* const g_ptr, const uint8_t* const b_ptr, const uint8_t* const a_ptr, int step, int rgb_stride, float dithering, WebPPicture* const picture) argument
/external/webp/src/enc/
H A Dpicture_tools.c93 const uint8_t* const a_ptr = pic->a; local
95 if (a_ptr == NULL) return; // nothing to do
102 if (is_transparent_area(a_ptr + off_a, pic->a_stride, SIZE)) {
148 uint8_t* const a_ptr = pic->a + y * pic->a_stride; local
150 const int alpha = a_ptr[x];
152 y_ptr[x] = BLEND(Y0, y_ptr[x], a_ptr[x]);
160 (y + 1 == pic->height) ? a_ptr : a_ptr + pic->a_stride;
165 a_ptr[2 * x + 0] + a_ptr[
[all...]
H A Dpicture_csp.c174 const uint8_t* const a_ptr,
182 const int has_alpha = CheckNonOpaque(a_ptr, width, height, step, rgb_stride);
230 a_ptr[step * x + y * rgb_stride];
340 const uint8_t* const a_ptr = import_alpha ? rgb + 3 : NULL; local
345 return ImportYUVAFromRGBA(r_ptr, g_ptr, b_ptr, a_ptr, step, rgb_stride,
356 dst[x] = MakeARGB32(import_alpha ? a_ptr[offset] : 0xff,
171 ImportYUVAFromRGBA(const uint8_t* const r_ptr, const uint8_t* const g_ptr, const uint8_t* const b_ptr, const uint8_t* const a_ptr, int step, int rgb_stride, float dithering, WebPPicture* const picture) argument
/external/chromium_org/media/base/simd/
H A Dconvert_yuv_to_rgb_x86.cc35 const uint8* a_ptr = aplane + y * astride; local
40 a_ptr,
H A Dconvert_yuv_to_rgb_c.cc262 const uint8* a_ptr = aplane + y * astride; local
267 a_ptr,
/external/eigen/Eigen/src/Core/products/
H A DGeneralMatrixMatrixTriangular_MKL.h115 const EIGTYPE* a_ptr; \
128 a_ptr = a.data(); \
129 } else a_ptr=lhs; \
130 MKLFUNC(&uplo, &trans, &n, &k, &alpha_, (MKLTYPE*)a_ptr, &lda, &beta_, (MKLTYPE*)res, &ldc); \
/external/lldb/test/types/
H A Dbasic_type.cpp93 T* a_ptr = &a; local
127 printf ("%s*: %p => *a_ptr = '" T_PRINTF_FORMAT "'\n", T_CSTR, a_ptr, *a_ptr);
180 printf ("%s*: %p => *a_ptr = '" T_PRINTF_FORMAT "'\n", T_CSTR, a_ptr, *a_ptr);
/external/lldb/test/functionalities/breakpoint/inlined_breakpoints/
H A Dbasic_type.cpp94 T* a_ptr = &a; local
128 printf ("%s*: %p => *a_ptr = '" T_PRINTF_FORMAT "'\n", T_CSTR, a_ptr, *a_ptr);
/external/openssl/crypto/bn/asm/
H A Dpa-risc2.s57 a_ptr .reg %r25 label
80 ;BN_ULONG bn_mul_add_words(BN_ULONG *r_ptr, BN_ULONG *a_ptr,
84 ; arg1 = a_ptr
165 FLDD 0(a_ptr),t_float_0 ; load up 64-bit value (fr8L) ht(L)/lt(R)
166 FLDD 8(a_ptr),t_float_1 ; load up 64-bit value (fr8L) ht(L)/lt(R)
232 LDO 16(a_ptr),a_ptr ; a_ptr += 2
244 FLDD 0(a_ptr),t_float_0 ; load up 64-bit value (fr8L) ht(L)/lt(R)
246 LDO 8(a_ptr),a_pt
[all...]
H A Dpa-risc2W.s53 a_ptr .reg %r25 label
72 ;BN_ULONG bn_mul_add_words(BN_ULONG *r_ptr, BN_ULONG *a_ptr,
76 ; arg1 = a_ptr
157 FLDD 0(a_ptr),t_float_0 ; load up 64-bit value (fr8L) ht(L)/lt(R)
158 FLDD 8(a_ptr),t_float_1 ; load up 64-bit value (fr8L) ht(L)/lt(R)
224 LDO 16(a_ptr),a_ptr ; a_ptr += 2
236 FLDD 0(a_ptr),t_float_0 ; load up 64-bit value (fr8L) ht(L)/lt(R)
238 LDO 8(a_ptr),a_pt
[all...]
/external/valgrind/main/coregrind/m_initimg/
H A Dinitimg-linux.c351 void *a_ptr; member in union:auxv::__anon32548
452 stringsize += VG_(strlen)(cauxv->u.a_ptr) + 1;
674 auxv->u.a_ptr = copy_str(&strtab, orig_auxv->u.a_ptr);
745 const NSegment* ehdrseg = VG_(am_find_nsegment)((Addr)auxv->u.a_ptr);
757 auxv->u.a_ptr = strtab;
758 VG_(memcpy)(strtab, orig_auxv->u.a_ptr, 16);
764 auxv->u.a_ptr = copy_str(&strtab, VG_(args_the_exename));
/external/chromium_org/third_party/webrtc/modules/audio_processing/aec/
H A Daec_rdft_mips.c273 int a_ptr, p1_rdft, p2_rdft, count; local
344 "addiu %[a_ptr], %[a], 64 \n\t"
363 "lwc1 %[f0], 0(%[a_ptr]) \n\t"
364 "lwc1 %[f1], 4(%[a_ptr]) \n\t"
365 "lwc1 %[f2], 8(%[a_ptr]) \n\t"
366 "lwc1 %[f3], 12(%[a_ptr]) \n\t"
367 "lwc1 %[f4], 16(%[a_ptr]) \n\t"
368 "lwc1 %[f5], 20(%[a_ptr]) \n\t"
369 "lwc1 %[f6], 24(%[a_ptr]) \n\t"
370 "lwc1 %[f7], 28(%[a_ptr]) \
[all...]
/external/lldb/examples/darwin/heap_find/heap/
H A Dheap_find.cpp236 Class a_ptr = *(Class *)a; local
238 if (a_ptr < b_ptr) return -1;
239 if (a_ptr > b_ptr) return +1;
/external/bison/lib/
H A Dvasnprintf.c468 const mp_limb_t *a_ptr = a.limbs; local
487 while (a_len > 0 && a_ptr[a_len - 1] == 0)
509 memcpy (r_ptr, a_ptr, a_len * sizeof (mp_limb_t));
522 const mp_limb_t *sourceptr = a_ptr + a_len;
645 memcpy (r_ptr, a_ptr, a_len * sizeof (mp_limb_t));
650 const mp_limb_t *sourceptr = a_ptr;
848 mp_limb_t *a_ptr = a.limbs; local
862 mp_limb_t *ptr = a_ptr + a_len;
878 if (a_ptr[a_len - 1] == 0)
/external/pcre/dist/sljit/
H A DsljitNativeTILEGX-encoder.c9592 tilegx_spr_compare (const void *a_ptr, const void *b_ptr) argument
9594 const struct tilegx_spr *a = (const struct tilegx_spr *) a_ptr;
/external/valgrind/main/perf/
H A Dtinycc.c839 void *a_ptr; /* Pointer value */ member in union:__anon33305::__anon33306
850 void *a_ptr; /* Pointer value */ member in union:__anon33307::__anon33308

Completed in 646 milliseconds