/external/chromium_org/third_party/opus/src/silk/ |
resampler_private_down_FIR.c | 47 opus_int32 *buf_ptr; local 55 buf_ptr = buf + silk_RSHIFT( index_Q16, 16 ); 62 res_Q6 = silk_SMULWB( buf_ptr[ 0 ], interpol_ptr[ 0 ] ); 63 res_Q6 = silk_SMLAWB( res_Q6, buf_ptr[ 1 ], interpol_ptr[ 1 ] ); 64 res_Q6 = silk_SMLAWB( res_Q6, buf_ptr[ 2 ], interpol_ptr[ 2 ] ); 65 res_Q6 = silk_SMLAWB( res_Q6, buf_ptr[ 3 ], interpol_ptr[ 3 ] ); 66 res_Q6 = silk_SMLAWB( res_Q6, buf_ptr[ 4 ], interpol_ptr[ 4 ] ); 67 res_Q6 = silk_SMLAWB( res_Q6, buf_ptr[ 5 ], interpol_ptr[ 5 ] ); 68 res_Q6 = silk_SMLAWB( res_Q6, buf_ptr[ 6 ], interpol_ptr[ 6 ] ); 69 res_Q6 = silk_SMLAWB( res_Q6, buf_ptr[ 7 ], interpol_ptr[ 7 ] ) [all...] |
resampler_down2_3.c | 48 opus_int32 *buf_ptr; local 65 buf_ptr = buf; 69 res_Q6 = silk_SMULWB( buf_ptr[ 0 ], silk_Resampler_2_3_COEFS_LQ[ 2 ] ); 70 res_Q6 = silk_SMLAWB( res_Q6, buf_ptr[ 1 ], silk_Resampler_2_3_COEFS_LQ[ 3 ] ); 71 res_Q6 = silk_SMLAWB( res_Q6, buf_ptr[ 2 ], silk_Resampler_2_3_COEFS_LQ[ 5 ] ); 72 res_Q6 = silk_SMLAWB( res_Q6, buf_ptr[ 3 ], silk_Resampler_2_3_COEFS_LQ[ 4 ] ); 77 res_Q6 = silk_SMULWB( buf_ptr[ 1 ], silk_Resampler_2_3_COEFS_LQ[ 4 ] ); 78 res_Q6 = silk_SMLAWB( res_Q6, buf_ptr[ 2 ], silk_Resampler_2_3_COEFS_LQ[ 5 ] ); 79 res_Q6 = silk_SMLAWB( res_Q6, buf_ptr[ 3 ], silk_Resampler_2_3_COEFS_LQ[ 3 ] ); 80 res_Q6 = silk_SMLAWB( res_Q6, buf_ptr[ 4 ], silk_Resampler_2_3_COEFS_LQ[ 2 ] ) [all...] |
resampler_private_IIR_FIR.c | 44 opus_int16 *buf_ptr; local 50 buf_ptr = &buf[ index_Q16 >> 16 ]; 52 res_Q15 = silk_SMULBB( buf_ptr[ 0 ], silk_resampler_frac_FIR_12[ table_index ][ 0 ] ); 53 res_Q15 = silk_SMLABB( res_Q15, buf_ptr[ 1 ], silk_resampler_frac_FIR_12[ table_index ][ 1 ] ); 54 res_Q15 = silk_SMLABB( res_Q15, buf_ptr[ 2 ], silk_resampler_frac_FIR_12[ table_index ][ 2 ] ); 55 res_Q15 = silk_SMLABB( res_Q15, buf_ptr[ 3 ], silk_resampler_frac_FIR_12[ table_index ][ 3 ] ); 56 res_Q15 = silk_SMLABB( res_Q15, buf_ptr[ 4 ], silk_resampler_frac_FIR_12[ 11 - table_index ][ 3 ] ); 57 res_Q15 = silk_SMLABB( res_Q15, buf_ptr[ 5 ], silk_resampler_frac_FIR_12[ 11 - table_index ][ 2 ] ); 58 res_Q15 = silk_SMLABB( res_Q15, buf_ptr[ 6 ], silk_resampler_frac_FIR_12[ 11 - table_index ][ 1 ] ); 59 res_Q15 = silk_SMLABB( res_Q15, buf_ptr[ 7 ], silk_resampler_frac_FIR_12[ 11 - table_index ][ 0 ] ) [all...] |
/external/chromium/sdch/open-vcdiff/src/ |
varint_bigendian.cc | 70 char* buf_ptr = &varint_buf[kMaxBytes - 1]; local 71 *buf_ptr = static_cast<char>(v & 0x7F); 72 --buf_ptr; 75 *buf_ptr = static_cast<char>((v & 0x7F) | 0x80); // add continuation bit 76 --buf_ptr;
|
/external/chromium_org/sdch/open-vcdiff/src/ |
varint_bigendian.cc | 70 char* buf_ptr = &varint_buf[kMaxBytes - 1]; local 71 *buf_ptr = static_cast<char>(v & 0x7F); 72 --buf_ptr; 75 *buf_ptr = static_cast<char>((v & 0x7F) | 0x80); // add continuation bit 76 --buf_ptr;
|
/external/open-vcdiff/src/ |
varint_bigendian.cc | 70 char* buf_ptr = &varint_buf[kMaxBytes - 1]; local 71 *buf_ptr = static_cast<char>(v & 0x7F); 72 --buf_ptr; 75 *buf_ptr = static_cast<char>((v & 0x7F) | 0x80); // add continuation bit 76 --buf_ptr;
|
/external/chromium_org/mojo/public/tests/ |
buffer_unittest.cc | 87 void* buf_ptr = NULL; local 94 void* buf_ptr = buf.Leak(); local 98 EXPECT_EQ(ptr, buf_ptr); 108 free(buf_ptr);
|
/external/libvpx/libvpx/ |
vpxstats.h | 25 char *buf_ptr; member in struct:__anon21346
|
vpxstats.c | 74 stats->buf_ptr = stats->buf.buf; 106 stats->buf_ptr = new_ptr + (stats->buf_ptr - (char *)stats->buf.buf); 114 memcpy(stats->buf_ptr, pkt, len); 116 stats->buf_ptr += len;
|
/external/chromium_org/crypto/ |
encryptor.cc | 39 uint8* buf_ptr = reinterpret_cast<uint8*>(buf); local 40 memcpy(buf_ptr, &counter_, sizeof(counter_));
|
/external/chromium_org/media/webm/ |
tracks_builder.cc | 63 static void SerializeInt(uint8** buf_ptr, int* buf_size_ptr, 65 uint8*& buf = *buf_ptr; 100 static void WriteStringElement(uint8** buf_ptr, int* buf_size_ptr, 102 uint8*& buf = *buf_ptr;
|
/device/lge/mako/camera/mm-camera-interface/ |
mm_jpeg_encoder.c | 128 uint8_t *buf_ptr = NULL; local 138 jpeg_buffer_get_addr(thumbnail_buffer, &buf_ptr); 143 jpeg_buffer_get_addr(snapshot_buffer, &buf_ptr); 167 uint8_t *buf_ptr; local 175 jpeg_buffer_get_addr(buffer, &buf_ptr); 179 mmcamera_jpegfragment_callback(buf_ptr, buf_size, user_data); 193 uint8_t *buf_ptr; local 201 jpeg_buffer_get_addr(buffer, &buf_ptr); 205 mmcamera_jpegfragment_callback(buf_ptr, buf_size, user_data);
|
/external/iproute2/tc/ |
emp_ematch.l | 34 static void __attribute__ ((unused)) yyunput (int c,char *buf_ptr );
|
/external/opencv/ml/src/ |
mlann_mlp.cpp | 889 double *buf_ptr; local 912 buf_ptr = buf->data.db; 916 x[j] = buf_ptr; 918 buf_ptr += (df[j] - x[j])*2; 985 cvInitMatHeader( grad1, 1, ovcount, CV_64F, buf_ptr ); 987 grad2->data.db = buf_ptr + max_count; 1064 double *buf_ptr; local 1101 buf_ptr = buf->data.db; 1105 x[i] = buf_ptr; 1107 buf_ptr += (df[i] - x[i])*2 [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/translate/ |
translate_sse.c | 1074 struct x86_reg buf_ptr = x86_make_disp(p->machine_EDI, local 1155 struct x86_reg buf_ptr = local 1230 struct x86_reg buf_ptr = x86_make_disp(p->machine_EDI, local [all...] |
/external/mesa3d/src/gallium/auxiliary/translate/ |
translate_sse.c | 1074 struct x86_reg buf_ptr = x86_make_disp(p->machine_EDI, local 1155 struct x86_reg buf_ptr = local 1230 struct x86_reg buf_ptr = x86_make_disp(p->machine_EDI, local [all...] |
/external/elfutils/libcpu/ |
i386_lex.c | 640 static void yyunput (int c,char *buf_ptr ); [all...] |
/external/elfutils/src/ |
ldlex.c | [all...] |
/system/core/sh/ |
arith_lex.c | 553 static void yyunput (int c,char *buf_ptr ); [all...] |
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/ |
glcpp-lex.c | 744 static void yyunput (int c,char *buf_ptr ,yyscan_t yyscanner); [all...] |
lex.yy.c | [all...] |
/external/libpcap/ |
scanner.c | [all...] |
/external/valgrind/main/perf/ |
tinycc.c | 2263 uint8_t *buf_ptr; member in struct:BufferedFile [all...] |
/hardware/qcom/media/mm-video-v4l2/vidc/vdec/test/ |
omx_vdec_test.cpp | 179 uint16 crc_16_l_step_nv12 (uint16 seed, const void *buf_ptr, 183 char *buf = (char *)buf_ptr; [all...] |