HomeSort by relevance Sort by last modified time
    Searched full:inptr (Results 101 - 125 of 385) sorted by null

1 2 3 45 6 7 8 91011>>

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/lib32/gconv/
UTF-16.so 
UTF-7.so 
VISCII.so 
CP10007.so 
CP1250.so 
CP1251.so 
CP1254.so 
CP1256.so 
CP1257.so 
CP774.so 
CP775.so 
CSN_369103.so 
EBCDIC-CA-FR.so 
ECMA-CYRILLIC.so 
GEORGIAN-ACADEMY.so 
GEORGIAN-PS.so 
  /external/libjpeg-turbo/
jidctred.c 127 JCOEFPTR inptr; local
138 inptr = coef_block; local
141 for (ctr = DCTSIZE; ctr > 0; inptr++, quantptr++, wsptr++, ctr--) {
145 if (inptr[DCTSIZE*1] == 0 && inptr[DCTSIZE*2] == 0 &&
146 inptr[DCTSIZE*3] == 0 && inptr[DCTSIZE*5] == 0 &&
147 inptr[DCTSIZE*6] == 0 && inptr[DCTSIZE*7] == 0) {
149 int dcval = LEFT_SHIFT(DEQUANTIZE(inptr[DCTSIZE*0], quantptr[DCTSIZE*0])
280 JCOEFPTR inptr; local
291 inptr = coef_block; local
    [all...]
jidctflt.c 79 JCOEFPTR inptr; local
90 inptr = coef_block;
103 if (inptr[DCTSIZE*1] == 0 && inptr[DCTSIZE*2] == 0 &&
104 inptr[DCTSIZE*3] == 0 && inptr[DCTSIZE*4] == 0 &&
105 inptr[DCTSIZE*5] == 0 && inptr[DCTSIZE*6] == 0 &&
106 inptr[DCTSIZE*7] == 0) {
108 FAST_FLOAT dcval = DEQUANTIZE(inptr[DCTSIZE*0]
    [all...]
wrtarga.c 98 register JSAMPROW inptr; local
102 inptr = dest->pub.buffer[0];
105 outptr[0] = (char) GETJSAMPLE(inptr[2]); /* RGB to BGR order */
106 outptr[1] = (char) GETJSAMPLE(inptr[1]);
107 outptr[2] = (char) GETJSAMPLE(inptr[0]);
108 inptr += 3, outptr += 3;
119 register JSAMPROW inptr; local
123 inptr = dest->pub.buffer[0];
126 *outptr++ = (char) GETJSAMPLE(*inptr++);
142 register JSAMPROW inptr; local
    [all...]
  /external/libjpeg-turbo/simd/
jcgryext-altivec.c 32 JSAMPROW inptr, outptr; local
63 inptr = *input_buf++;
68 num_cols -= RGB_PIXELSIZE * 16, inptr += RGB_PIXELSIZE * 16,
73 offset = (size_t)inptr & 15;
86 memcpy(tmpbuf, inptr, min(num_cols, RGB_PIXELSIZE * 16));
95 rgb0 = vec_ld(0, inptr);
97 rgb1 = vec_ld(16, inptr);
99 rgb2 = vec_ld(32, inptr);
101 rgb3 = vec_ld(48, inptr);
104 rgb4 = vec_ld(64, inptr);
    [all...]
jdsample-altivec.c 35 JSAMPROW inptr, outptr; local
57 inptr = input_data[inrow];
61 inptr[downsampled_width] = inptr[downsampled_width - 1];
63 this0 = vec_ld(0, inptr);
68 incol -= 16, inptr += 16, outptr += 32) {
78 next0 = vec_ld(16, inptr);
316 JSAMPROW inptr, outptr; local
322 inptr = input_data[inrow];
326 incol -= 64, inptr += 32, outptr += 64)
355 JSAMPROW inptr, outptr0, outptr1; local
    [all...]
  /external/syslinux/com32/lib/jpeg/
jidctflt.c 128 int16_t *inptr; local
137 inptr = compptr->DCT;
150 if (inptr[DCTSIZE*1] == 0 && inptr[DCTSIZE*2] == 0 &&
151 inptr[DCTSIZE*3] == 0 && inptr[DCTSIZE*4] == 0 &&
152 inptr[DCTSIZE*5] == 0 && inptr[DCTSIZE*6] == 0 &&
153 inptr[DCTSIZE*7] == 0) {
155 FAST_FLOAT dcval = DEQUANTIZE(inptr[DCTSIZE*0], quantptr[DCTSIZE*0])
    [all...]
  /external/webrtc/webrtc/common_audio/signal_processing/
filter_ar_fast_q12_mips.c 22 int coefptr, outptr, tmpout, inptr; local
40 "addiu %[inptr], %[data_in], 0 \n\t"
44 "lh %[r0], 0(%[inptr]) \n\t"
65 "addiu %[inptr], %[inptr], 2 \n\t"
84 "lh %[r0], 0(%[inptr]) \n\t"
108 "addiu %[inptr], %[inptr], 2 \n\t"
129 [outptr] "=&r" (outptr), [inptr] "=&r" (inptr),
    [all...]
vector_scaling_operations.c 92 const int16_t *inptr; local
95 inptr = in_vector;
100 *outptr++ = (int16_t)((*inptr++ * gain) >> right_shifts);
110 const int16_t *inptr; local
113 inptr = in_vector;
117 *outptr++ = WebRtcSpl_SatW32ToW16((*inptr++ * gain) >> right_shifts);
  /external/swiftshader/src/OpenGL/libGLESv2/
IndexDataManager.cpp 75 const unsigned char* inPtr = static_cast<const unsigned char*>(input);
106 memcpy(outPtr, inPtr, numBytes);
109 inPtr += (numIndices + 1) * bytesPerIndex;
120 memcpy(outPtr, inPtr, bytesPerIndex);
122 memcpy(outPtr, inPtr + ((tri + 1) * bytesPerIndex), bytesPerIndex + bytesPerIndex);
125 inPtr += (numIndices + 1) * bytesPerIndex;
137 memcpy(outPtr, inPtr + ((tri + 1) * bytesPerIndex), bytesPerIndex);
139 memcpy(outPtr, inPtr + ((tri + 0) * bytesPerIndex), bytesPerIndex);
141 memcpy(outPtr, inPtr + ((tri + 2) * bytesPerIndex), bytesPerIndex);
147 memcpy(outPtr, inPtr + (tri * bytesPerIndex), numBytes)
    [all...]

Completed in 231 milliseconds

1 2 3 45 6 7 8 91011>>