Searched refs:dst (Results 26 - 50 of 3914) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/cld/encodings/compact_lang_det/win/
H A Dcld_htmlutils_windows.cc8 // Writes entity value to dst. Returns take(src), put(dst) byte counts
9 void EntityToBuffer(const char* src, int len, char* dst, argument
27 *dst = ' ';
H A Dcld_htmlutils.h9 // Writes entity value to dst. Returns take(src), put(dst) byte counts
10 void EntityToBuffer(const char* src, int len, char* dst,
/external/qemu/distrib/sdl-1.2.15/src/audio/
H A DSDL_mixer_m68k.c31 void SDL_MixAudio_m68k_U8(char* dst, char* src, long len, long volume, char* mix8) argument
47 " moveb %0@,%%d1\n" /* d1 = *dst */
63 "a"(dst), "a"(src), "d"(len), "d"(volume), "a"(mix8)
69 void SDL_MixAudio_m68k_S8(char* dst, char* src, long len, long volume) argument
86 " moveb %0@,%%d1\n" /* d1 = *dst */
110 "a"(dst), "a"(src), "d"(len), "d"(volume)
116 void SDL_MixAudio_m68k_S16MSB(short* dst, short* src, long len, long volume) argument
131 " move %0@,%%d1\n" /* d1 = *dst */
156 "a"(dst), "a"(src), "d"(len), "d"(volume)
162 void SDL_MixAudio_m68k_S16LSB(short* dst, shor argument
[all...]
H A DSDL_mixer_m68k.h31 void SDL_MixAudio_m68k_U8(char* dst,char* src, long len, long volume, char* mix8);
32 void SDL_MixAudio_m68k_S8(char* dst,char* src, long len, long volume);
34 void SDL_MixAudio_m68k_S16MSB(short* dst,short* src, long len, long volume);
35 void SDL_MixAudio_m68k_S16LSB(short* dst,short* src, long len, long volume);
H A DSDL_mixer_MMX.c40 void SDL_MixAudio_MMX_S16(char* dst,char* src,unsigned int size,int volume) argument
72 /* pr� charger le buffer dst dans mm7 */
73 " movq (%0),%%mm7\n" /* mm7 = dst[0] */
95 /* pr� charger le buffer dst dans mm5 */
96 " movq 8(%0),%%mm5\n" /* mm5 = dst[1] */
110 " paddsw %%mm7,%%mm3\n" /* mm3 = adjust_volume(src)+dst */
116 " paddsw %%mm5,%%mm6\n" /* mm6 = adjust_volume(src)+dst */
130 : "r" (dst), "r"(src),"m"(size),
142 void SDL_MixAudio_MMX_S8(char* dst,char* src,unsigned int size,int volume) argument
201 : "r" (dst), "
[all...]
/external/valgrind/main/memcheck/
H A Dmc_replace_strmem.c43 #define RECORD_OVERLAP_ERROR(s, src, dst, len) \
46 s, src, dst, len, 0)
/external/chromium_org/third_party/skia/src/core/
H A DSkQuadClipper.cpp51 bool SkQuadClipper::clipQuad(const SkPoint srcPts[3], SkPoint dst[3]) { argument
56 dst[0] = srcPts[2];
57 dst[1] = srcPts[1];
58 dst[2] = srcPts[0];
61 memcpy(dst, srcPts, 3 * sizeof(SkPoint));
68 if (dst[2].fY <= ctop || dst[0].fY >= cbot) {
76 if (dst[0].fY < ctop) {
77 if (chopMonoQuadAtY(dst, ctop, &t)) {
79 SkChopQuadAt(dst, tm
[all...]
H A DSkFlate.h30 * putting the result into dst. Returns false if an error occurs.
32 static bool Deflate(SkStream* src, SkWStream* dst);
36 * putting the result into dst. Returns false if an error occurs.
38 static bool Deflate(const void* src, size_t len, SkWStream* dst);
42 * putting the result into dst. Returns false if an error occurs.
44 static bool Deflate(const SkData*, SkWStream* dst);
47 putting the result into dst. Returns false if an error occurs.
49 static bool Inflate(SkStream* src, SkWStream* dst);
/external/skia/src/core/
H A DSkQuadClipper.cpp51 bool SkQuadClipper::clipQuad(const SkPoint srcPts[3], SkPoint dst[3]) { argument
56 dst[0] = srcPts[2];
57 dst[1] = srcPts[1];
58 dst[2] = srcPts[0];
61 memcpy(dst, srcPts, 3 * sizeof(SkPoint));
68 if (dst[2].fY <= ctop || dst[0].fY >= cbot) {
76 if (dst[0].fY < ctop) {
77 if (chopMonoQuadAtY(dst, ctop, &t)) {
79 SkChopQuadAt(dst, tm
[all...]
H A DSkFlate.h30 * putting the result into dst. Returns false if an error occurs.
32 static bool Deflate(SkStream* src, SkWStream* dst);
36 * putting the result into dst. Returns false if an error occurs.
38 static bool Deflate(const void* src, size_t len, SkWStream* dst);
42 * putting the result into dst. Returns false if an error occurs.
44 static bool Deflate(const SkData*, SkWStream* dst);
47 putting the result into dst. Returns false if an error occurs.
49 static bool Inflate(SkStream* src, SkWStream* dst);
/external/chromium_org/third_party/opus/src/celt/
H A Dos_support.h70 /** Copy n bytes of memory from src to dst. The 0* term provides compile-time type checking */
72 #define OPUS_COPY(dst, src, n) (memcpy((dst), (src), (n)*sizeof(*(dst)) + 0*((dst)-(src)) ))
75 /** Copy n bytes of memory from src to dst, allowing overlapping regions. The 0* term
78 #define OPUS_MOVE(dst, src, n) (memmove((dst), (src), (n)*sizeof(*(dst)) + 0*((dst)
[all...]
/external/libopus/celt/
H A Dos_support.h70 /** Copy n bytes of memory from src to dst. The 0* term provides compile-time type checking */
72 #define OPUS_COPY(dst, src, n) (memcpy((dst), (src), (n)*sizeof(*(dst)) + 0*((dst)-(src)) ))
75 /** Copy n bytes of memory from src to dst, allowing overlapping regions. The 0* term
78 #define OPUS_MOVE(dst, src, n) (memmove((dst), (src), (n)*sizeof(*(dst)) + 0*((dst)
[all...]
/external/chromium_org/third_party/skia/tests/
H A DSrcOverTest.cpp13 static int test_srcover0(unsigned dst, unsigned alpha) { argument
14 return alpha + SkAlphaMul(dst, SkAlpha255To256(255 - alpha));
18 static int test_srcover1(unsigned dst, unsigned alpha) { argument
19 return alpha + SkAlphaMul(dst, 256 - alpha);
23 static int test_srcover2(unsigned dst, unsigned alpha) { argument
24 return alpha + SkMulDiv255Round(dst, 255 - alpha);
29 dst, that the result always stay's opaque (i.e. exactly 255)?
55 for (unsigned dst = 0; dst <= 255; dst
[all...]
/external/skia/tests/
H A DSrcOverTest.cpp13 static int test_srcover0(unsigned dst, unsigned alpha) { argument
14 return alpha + SkAlphaMul(dst, SkAlpha255To256(255 - alpha));
18 static int test_srcover1(unsigned dst, unsigned alpha) { argument
19 return alpha + SkAlphaMul(dst, 256 - alpha);
23 static int test_srcover2(unsigned dst, unsigned alpha) { argument
24 return alpha + SkMulDiv255Round(dst, 255 - alpha);
29 dst, that the result always stay's opaque (i.e. exactly 255)?
55 for (unsigned dst = 0; dst <= 255; dst
[all...]
/external/chromium_org/third_party/skia/src/opts/
H A DSkUtils_opts_SSE2.cpp11 void sk_memset16_SSE2(uint16_t *dst, uint16_t value, int count) argument
13 SkASSERT(dst != NULL && count >= 0);
15 // dst must be 2-byte aligned.
16 SkASSERT((((size_t) dst) & 0x01) == 0);
19 while (((size_t)dst) & 0x0F) {
20 *dst++ = value;
23 __m128i *d = reinterpret_cast<__m128i*>(dst);
33 dst = reinterpret_cast<uint16_t*>(d);
36 *dst++ = value;
41 void sk_memset32_SSE2(uint32_t *dst, uint32_ argument
71 sk_memcpy32_SSE2(uint32_t *dst, const uint32_t *src, int count) argument
[all...]
/external/skia/src/opts/
H A DSkUtils_opts_SSE2.cpp11 void sk_memset16_SSE2(uint16_t *dst, uint16_t value, int count) argument
13 SkASSERT(dst != NULL && count >= 0);
15 // dst must be 2-byte aligned.
16 SkASSERT((((size_t) dst) & 0x01) == 0);
19 while (((size_t)dst) & 0x0F) {
20 *dst++ = value;
23 __m128i *d = reinterpret_cast<__m128i*>(dst);
33 dst = reinterpret_cast<uint16_t*>(d);
36 *dst++ = value;
41 void sk_memset32_SSE2(uint32_t *dst, uint32_ argument
71 sk_memcpy32_SSE2(uint32_t *dst, const uint32_t *src, int count) argument
[all...]
/external/clang/test/CodeGen/
H A Darm-neon-misc.c14 void t1(uint64_t *src, uint8_t *dst) { argument
18 vst1q_lane_u64(dst, q, 1);
24 void t2(uint64_t *src1, uint8_t *src2, uint64x2_t *dst) { argument
32 *dst = q;
/external/valgrind/main/none/tests/amd64/
H A Dnan80and64.stdout.exp2 dst = qnan80: 7fffc000000000000000
5 dst = snan80: 7fffbfffffffffffffff
8 dst = qnan64: 7ff8000000000000
11 dst = snan64: 7ff7ffffffffffff
14 dst = qnan80: ffffc000000000000000
17 dst = snan80: ffffbfffffffffffffff
20 dst = qnan64: fff8000000000000
23 dst = snan64: fff7ffffffffffff
/external/chromium_org/third_party/leveldatabase/src/util/
H A Dtestutil.cc12 Slice RandomString(Random* rnd, int len, std::string* dst) { argument
13 dst->resize(len);
15 (*dst)[i] = static_cast<char>(' ' + rnd->Uniform(95)); // ' ' .. '~'
17 return Slice(*dst);
35 size_t len, std::string* dst) {
42 dst->clear();
43 while (dst->size() < len) {
44 dst->append(raw_data);
46 dst->resize(len);
47 return Slice(*dst);
34 CompressibleString(Random* rnd, double compressed_fraction, size_t len, std::string* dst) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dformat_unpack.c87 typedef void (*unpack_rgba_func)(const void *src, GLfloat dst[][4], GLuint n);
91 unpack_RGBA8888(const void *src, GLfloat dst[][4], GLuint n) argument
96 dst[i][RCOMP] = UBYTE_TO_FLOAT( (s[i] >> 24) );
97 dst[i][GCOMP] = UBYTE_TO_FLOAT( (s[i] >> 16) & 0xff );
98 dst[i][BCOMP] = UBYTE_TO_FLOAT( (s[i] >> 8) & 0xff );
99 dst[i][ACOMP] = UBYTE_TO_FLOAT( (s[i] ) & 0xff );
104 unpack_RGBA8888_REV(const void *src, GLfloat dst[][4], GLuint n) argument
109 dst[i][RCOMP] = UBYTE_TO_FLOAT( (s[i] ) & 0xff );
110 dst[i][GCOMP] = UBYTE_TO_FLOAT( (s[i] >> 8) & 0xff );
111 dst[
117 unpack_ARGB8888(const void *src, GLfloat dst[][4], GLuint n) argument
130 unpack_ARGB8888_REV(const void *src, GLfloat dst[][4], GLuint n) argument
143 unpack_RGBX8888(const void *src, GLfloat dst[][4], GLuint n) argument
156 unpack_RGBX8888_REV(const void *src, GLfloat dst[][4], GLuint n) argument
169 unpack_XRGB8888(const void *src, GLfloat dst[][4], GLuint n) argument
182 unpack_XRGB8888_REV(const void *src, GLfloat dst[][4], GLuint n) argument
195 unpack_RGB888(const void *src, GLfloat dst[][4], GLuint n) argument
208 unpack_BGR888(const void *src, GLfloat dst[][4], GLuint n) argument
221 unpack_RGB565(const void *src, GLfloat dst[][4], GLuint n) argument
234 unpack_RGB565_REV(const void *src, GLfloat dst[][4], GLuint n) argument
248 unpack_ARGB4444(const void *src, GLfloat dst[][4], GLuint n) argument
261 unpack_ARGB4444_REV(const void *src, GLfloat dst[][4], GLuint n) argument
274 unpack_RGBA5551(const void *src, GLfloat dst[][4], GLuint n) argument
287 unpack_ARGB1555(const void *src, GLfloat dst[][4], GLuint n) argument
300 unpack_ARGB1555_REV(const void *src, GLfloat dst[][4], GLuint n) argument
314 unpack_AL44(const void *src, GLfloat dst[][4], GLuint n) argument
327 unpack_AL88(const void *src, GLfloat dst[][4], GLuint n) argument
340 unpack_AL88_REV(const void *src, GLfloat dst[][4], GLuint n) argument
353 unpack_AL1616(const void *src, GLfloat dst[][4], GLuint n) argument
366 unpack_AL1616_REV(const void *src, GLfloat dst[][4], GLuint n) argument
379 unpack_RGB332(const void *src, GLfloat dst[][4], GLuint n) argument
393 unpack_A8(const void *src, GLfloat dst[][4], GLuint n) argument
406 unpack_A16(const void *src, GLfloat dst[][4], GLuint n) argument
419 unpack_L8(const void *src, GLfloat dst[][4], GLuint n) argument
432 unpack_L16(const void *src, GLfloat dst[][4], GLuint n) argument
445 unpack_I8(const void *src, GLfloat dst[][4], GLuint n) argument
458 unpack_I16(const void *src, GLfloat dst[][4], GLuint n) argument
471 unpack_YCBCR(const void *src, GLfloat dst[][4], GLuint n) argument
496 unpack_YCBCR_REV(const void *src, GLfloat dst[][4], GLuint n) argument
521 unpack_R8(const void *src, GLfloat dst[][4], GLuint n) argument
534 unpack_GR88(const void *src, GLfloat dst[][4], GLuint n) argument
547 unpack_RG88(const void *src, GLfloat dst[][4], GLuint n) argument
560 unpack_R16(const void *src, GLfloat dst[][4], GLuint n) argument
573 unpack_RG1616(const void *src, GLfloat dst[][4], GLuint n) argument
586 unpack_RG1616_REV(const void *src, GLfloat dst[][4], GLuint n) argument
599 unpack_ARGB2101010(const void *src, GLfloat dst[][4], GLuint n) argument
613 unpack_ABGR2101010_UINT(const void *src, GLfloat dst[][4], GLuint n) argument
627 unpack_Z24_S8(const void *src, GLfloat dst[][4], GLuint n) argument
644 unpack_S8_Z24(const void *src, GLfloat dst[][4], GLuint n) argument
661 unpack_Z16(const void *src, GLfloat dst[][4], GLuint n) argument
674 unpack_X8_Z24(const void *src, GLfloat dst[][4], GLuint n) argument
680 unpack_Z24_X8(const void *src, GLfloat dst[][4], GLuint n) argument
686 unpack_Z32(const void *src, GLfloat dst[][4], GLuint n) argument
699 unpack_Z32_FLOAT(const void *src, GLfloat dst[][4], GLuint n) argument
712 unpack_Z32_FLOAT_X24S8(const void *src, GLfloat dst[][4], GLuint n) argument
726 unpack_S8(const void *src, GLfloat dst[][4], GLuint n) argument
740 unpack_SRGB8(const void *src, GLfloat dst[][4], GLuint n) argument
753 unpack_SRGBA8(const void *src, GLfloat dst[][4], GLuint n) argument
766 unpack_SARGB8(const void *src, GLfloat dst[][4], GLuint n) argument
779 unpack_SL8(const void *src, GLfloat dst[][4], GLuint n) argument
792 unpack_SLA8(const void *src, GLfloat dst[][4], GLuint n) argument
805 unpack_SRGB_DXT1(const void *src, GLfloat dst[][4], GLuint n) argument
810 unpack_SRGBA_DXT1(const void *src, GLfloat dst[][4], GLuint n) argument
815 unpack_SRGBA_DXT3(const void *src, GLfloat dst[][4], GLuint n) argument
820 unpack_SRGBA_DXT5(const void *src, GLfloat dst[][4], GLuint n) argument
825 unpack_RGB_FXT1(const void *src, GLfloat dst[][4], GLuint n) argument
830 unpack_RGBA_FXT1(const void *src, GLfloat dst[][4], GLuint n) argument
835 unpack_RGB_DXT1(const void *src, GLfloat dst[][4], GLuint n) argument
840 unpack_RGBA_DXT1(const void *src, GLfloat dst[][4], GLuint n) argument
845 unpack_RGBA_DXT3(const void *src, GLfloat dst[][4], GLuint n) argument
850 unpack_RGBA_DXT5(const void *src, GLfloat dst[][4], GLuint n) argument
856 unpack_RGBA_FLOAT32(const void *src, GLfloat dst[][4], GLuint n) argument
869 unpack_RGBA_FLOAT16(const void *src, GLfloat dst[][4], GLuint n) argument
882 unpack_RGB_FLOAT32(const void *src, GLfloat dst[][4], GLuint n) argument
895 unpack_RGB_FLOAT16(const void *src, GLfloat dst[][4], GLuint n) argument
908 unpack_ALPHA_FLOAT32(const void *src, GLfloat dst[][4], GLuint n) argument
921 unpack_ALPHA_FLOAT16(const void *src, GLfloat dst[][4], GLuint n) argument
934 unpack_LUMINANCE_FLOAT32(const void *src, GLfloat dst[][4], GLuint n) argument
947 unpack_LUMINANCE_FLOAT16(const void *src, GLfloat dst[][4], GLuint n) argument
960 unpack_LUMINANCE_ALPHA_FLOAT32(const void *src, GLfloat dst[][4], GLuint n) argument
973 unpack_LUMINANCE_ALPHA_FLOAT16(const void *src, GLfloat dst[][4], GLuint n) argument
986 unpack_INTENSITY_FLOAT32(const void *src, GLfloat dst[][4], GLuint n) argument
999 unpack_INTENSITY_FLOAT16(const void *src, GLfloat dst[][4], GLuint n) argument
1012 unpack_R_FLOAT32(const void *src, GLfloat dst[][4], GLuint n) argument
1025 unpack_R_FLOAT16(const void *src, GLfloat dst[][4], GLuint n) argument
1038 unpack_RG_FLOAT32(const void *src, GLfloat dst[][4], GLuint n) argument
1051 unpack_RG_FLOAT16(const void *src, GLfloat dst[][4], GLuint n) argument
1065 unpack_RGBA_INT8(const void *src, GLfloat dst[][4], GLuint n) argument
1078 unpack_RGBA_INT16(const void *src, GLfloat dst[][4], GLuint n) argument
1091 unpack_RGBA_INT32(const void *src, GLfloat dst[][4], GLuint n) argument
1104 unpack_RGBA_UINT8(const void *src, GLfloat dst[][4], GLuint n) argument
1117 unpack_RGBA_UINT16(const void *src, GLfloat dst[][4], GLuint n) argument
1130 unpack_RGBA_UINT32(const void *src, GLfloat dst[][4], GLuint n) argument
1143 unpack_DUDV8(const void *src, GLfloat dst[][4], GLuint n) argument
1156 unpack_SIGNED_R8(const void *src, GLfloat dst[][4], GLuint n) argument
1169 unpack_SIGNED_RG88_REV(const void *src, GLfloat dst[][4], GLuint n) argument
1182 unpack_SIGNED_RGBX8888(const void *src, GLfloat dst[][4], GLuint n) argument
1195 unpack_SIGNED_RGBA8888(const void *src, GLfloat dst[][4], GLuint n) argument
1208 unpack_SIGNED_RGBA8888_REV(const void *src, GLfloat dst[][4], GLuint n) argument
1221 unpack_SIGNED_R16(const void *src, GLfloat dst[][4], GLuint n) argument
1234 unpack_SIGNED_GR1616(const void *src, GLfloat dst[][4], GLuint n) argument
1247 unpack_SIGNED_RGB_16(const void *src, GLfloat dst[][4], GLuint n) argument
1260 unpack_SIGNED_RGBA_16(const void *src, GLfloat dst[][4], GLuint n) argument
1273 unpack_RGBA_16(const void *src, GLfloat dst[][4], GLuint n) argument
1286 unpack_RED_RGTC1(const void *src, GLfloat dst[][4], GLuint n) argument
1292 unpack_SIGNED_RED_RGTC1(const void *src, GLfloat dst[][4], GLuint n) argument
1298 unpack_RG_RGTC2(const void *src, GLfloat dst[][4], GLuint n) argument
1304 unpack_SIGNED_RG_RGTC2(const void *src, GLfloat dst[][4], GLuint n) argument
1310 unpack_L_LATC1(const void *src, GLfloat dst[][4], GLuint n) argument
1316 unpack_SIGNED_L_LATC1(const void *src, GLfloat dst[][4], GLuint n) argument
1322 unpack_LA_LATC2(const void *src, GLfloat dst[][4], GLuint n) argument
1328 unpack_SIGNED_LA_LATC2(const void *src, GLfloat dst[][4], GLuint n) argument
1334 unpack_ETC1_RGB8(const void *src, GLfloat dst[][4], GLuint n) argument
1340 unpack_SIGNED_A8(const void *src, GLfloat dst[][4], GLuint n) argument
1353 unpack_SIGNED_L8(const void *src, GLfloat dst[][4], GLuint n) argument
1366 unpack_SIGNED_AL88(const void *src, GLfloat dst[][4], GLuint n) argument
1379 unpack_SIGNED_I8(const void *src, GLfloat dst[][4], GLuint n) argument
1392 unpack_SIGNED_A16(const void *src, GLfloat dst[][4], GLuint n) argument
1405 unpack_SIGNED_L16(const void *src, GLfloat dst[][4], GLuint n) argument
1418 unpack_SIGNED_AL1616(const void *src, GLfloat dst[][4], GLuint n) argument
1431 unpack_SIGNED_I16(const void *src, GLfloat dst[][4], GLuint n) argument
1444 unpack_RGB9_E5_FLOAT(const void *src, GLfloat dst[][4], GLuint n) argument
1455 unpack_R11_G11_B10_FLOAT(const void *src, GLfloat dst[][4], GLuint n) argument
1620 _mesa_unpack_rgba_row(gl_format format, GLuint n, const void *src, GLfloat dst[][4]) argument
1634 unpack_ubyte_RGBA8888(const void *src, GLubyte dst[][4], GLuint n) argument
1647 unpack_ubyte_RGBA8888_REV(const void *src, GLubyte dst[][4], GLuint n) argument
1660 unpack_ubyte_ARGB8888(const void *src, GLubyte dst[][4], GLuint n) argument
1673 unpack_ubyte_ARGB8888_REV(const void *src, GLubyte dst[][4], GLuint n) argument
1686 unpack_ubyte_RGBX8888(const void *src, GLubyte dst[][4], GLuint n) argument
1699 unpack_ubyte_RGBX8888_REV(const void *src, GLubyte dst[][4], GLuint n) argument
1712 unpack_ubyte_XRGB8888(const void *src, GLubyte dst[][4], GLuint n) argument
1725 unpack_ubyte_XRGB8888_REV(const void *src, GLubyte dst[][4], GLuint n) argument
1738 unpack_ubyte_RGB888(const void *src, GLubyte dst[][4], GLuint n) argument
1751 unpack_ubyte_BGR888(const void *src, GLubyte dst[][4], GLuint n) argument
1764 unpack_ubyte_RGB565(const void *src, GLubyte dst[][4], GLuint n) argument
1777 unpack_ubyte_RGB565_REV(const void *src, GLubyte dst[][4], GLuint n) argument
1791 unpack_ubyte_ARGB4444(const void *src, GLubyte dst[][4], GLuint n) argument
1804 unpack_ubyte_ARGB4444_REV(const void *src, GLubyte dst[][4], GLuint n) argument
1817 unpack_ubyte_RGBA5551(const void *src, GLubyte dst[][4], GLuint n) argument
1830 unpack_ubyte_ARGB1555(const void *src, GLubyte dst[][4], GLuint n) argument
1843 unpack_ubyte_ARGB1555_REV(const void *src, GLubyte dst[][4], GLuint n) argument
1857 unpack_ubyte_AL44(const void *src, GLubyte dst[][4], GLuint n) argument
1870 unpack_ubyte_AL88(const void *src, GLubyte dst[][4], GLuint n) argument
1883 unpack_ubyte_AL88_REV(const void *src, GLubyte dst[][4], GLuint n) argument
1896 unpack_ubyte_RGB332(const void *src, GLubyte dst[][4], GLuint n) argument
1909 unpack_ubyte_A8(const void *src, GLubyte dst[][4], GLuint n) argument
1922 unpack_ubyte_L8(const void *src, GLubyte dst[][4], GLuint n) argument
1936 unpack_ubyte_I8(const void *src, GLubyte dst[][4], GLuint n) argument
1949 unpack_ubyte_R8(const void *src, GLubyte dst[][4], GLuint n) argument
1962 unpack_ubyte_GR88(const void *src, GLubyte dst[][4], GLuint n) argument
1975 unpack_ubyte_RG88(const void *src, GLubyte dst[][4], GLuint n) argument
1993 _mesa_unpack_ubyte_rgba_row(gl_format format, GLuint n, const void *src, GLubyte dst[][4]) argument
2104 unpack_int_rgba_RGBA_UINT32(const GLuint *src, GLuint dst[][4], GLuint n) argument
2110 unpack_int_rgba_RGBA_UINT16(const GLushort *src, GLuint dst[][4], GLuint n) argument
2123 unpack_int_rgba_RGBA_INT16(const GLshort *src, GLuint dst[][4], GLuint n) argument
2136 unpack_int_rgba_RGBA_UINT8(const GLubyte *src, GLuint dst[][4], GLuint n) argument
2149 unpack_int_rgba_RGBA_INT8(const GLbyte *src, GLuint dst[][4], GLuint n) argument
2162 unpack_int_rgba_ARGB8888(const GLbyte *src, GLuint dst[][4], GLuint n) argument
2175 unpack_int_rgba_XRGB8888(const GLbyte *src, GLuint dst[][4], GLuint n) argument
2188 unpack_int_rgba_RGB_UINT32(const GLuint *src, GLuint dst[][4], GLuint n) argument
2201 unpack_int_rgba_RGB_UINT16(const GLushort *src, GLuint dst[][4], GLuint n) argument
2214 unpack_int_rgba_RGB_INT16(const GLshort *src, GLuint dst[][4], GLuint n) argument
2227 unpack_int_rgba_RGB_UINT8(const GLubyte *src, GLuint dst[][4], GLuint n) argument
2240 unpack_int_rgba_RGB_INT8(const GLbyte *src, GLuint dst[][4], GLuint n) argument
2253 unpack_int_rgba_RG_UINT32(const GLuint *src, GLuint dst[][4], GLuint n) argument
2266 unpack_int_rgba_RG_UINT16(const GLushort *src, GLuint dst[][4], GLuint n) argument
2279 unpack_int_rgba_RG_INT16(const GLshort *src, GLuint dst[][4], GLuint n) argument
2292 unpack_int_rgba_RG_UINT8(const GLubyte *src, GLuint dst[][4], GLuint n) argument
2305 unpack_int_rgba_RG_INT8(const GLbyte *src, GLuint dst[][4], GLuint n) argument
2318 unpack_int_rgba_R_UINT32(const GLuint *src, GLuint dst[][4], GLuint n) argument
2331 unpack_int_rgba_R_UINT16(const GLushort *src, GLuint dst[][4], GLuint n) argument
2344 unpack_int_rgba_R_INT16(const GLshort *src, GLuint dst[][4], GLuint n) argument
2357 unpack_int_rgba_R_UINT8(const GLubyte *src, GLuint dst[][4], GLuint n) argument
2370 unpack_int_rgba_R_INT8(const GLbyte *src, GLuint dst[][4], GLuint n) argument
2383 unpack_int_rgba_ALPHA_UINT32(const GLuint *src, GLuint dst[][4], GLuint n) argument
2394 unpack_int_rgba_ALPHA_UINT16(const GLushort *src, GLuint dst[][4], GLuint n) argument
2405 unpack_int_rgba_ALPHA_INT16(const GLshort *src, GLuint dst[][4], GLuint n) argument
2416 unpack_int_rgba_ALPHA_UINT8(const GLubyte *src, GLuint dst[][4], GLuint n) argument
2427 unpack_int_rgba_ALPHA_INT8(const GLbyte *src, GLuint dst[][4], GLuint n) argument
2438 unpack_int_rgba_LUMINANCE_UINT32(const GLuint *src, GLuint dst[][4], GLuint n) argument
2449 unpack_int_rgba_LUMINANCE_UINT16(const GLushort *src, GLuint dst[][4], GLuint n) argument
2460 unpack_int_rgba_LUMINANCE_INT16(const GLshort *src, GLuint dst[][4], GLuint n) argument
2471 unpack_int_rgba_LUMINANCE_UINT8(const GLubyte *src, GLuint dst[][4], GLuint n) argument
2482 unpack_int_rgba_LUMINANCE_INT8(const GLbyte *src, GLuint dst[][4], GLuint n) argument
2494 unpack_int_rgba_LUMINANCE_ALPHA_UINT32(const GLuint *src, GLuint dst[][4], GLuint n) argument
2505 unpack_int_rgba_LUMINANCE_ALPHA_UINT16(const GLushort *src, GLuint dst[][4], GLuint n) argument
2516 unpack_int_rgba_LUMINANCE_ALPHA_INT16(const GLshort *src, GLuint dst[][4], GLuint n) argument
2527 unpack_int_rgba_LUMINANCE_ALPHA_UINT8(const GLubyte *src, GLuint dst[][4], GLuint n) argument
2538 unpack_int_rgba_LUMINANCE_ALPHA_INT8(const GLbyte *src, GLuint dst[][4], GLuint n) argument
2549 unpack_int_rgba_INTENSITY_UINT32(const GLuint *src, GLuint dst[][4], GLuint n) argument
2559 unpack_int_rgba_INTENSITY_UINT16(const GLushort *src, GLuint dst[][4], GLuint n) argument
2569 unpack_int_rgba_INTENSITY_INT16(const GLshort *src, GLuint dst[][4], GLuint n) argument
2579 unpack_int_rgba_INTENSITY_UINT8(const GLubyte *src, GLuint dst[][4], GLuint n) argument
2589 unpack_int_rgba_INTENSITY_INT8(const GLbyte *src, GLuint dst[][4], GLuint n) argument
2599 unpack_int_rgba_ARGB2101010_UINT(const GLuint *src, GLuint dst[][4], GLuint n) argument
2613 unpack_int_rgba_ABGR2101010_UINT(const GLuint *src, GLuint dst[][4], GLuint n) argument
2627 unpack_int_rgba_ARGB2101010(const GLuint *src, GLuint dst[][4], GLuint n) argument
2641 _mesa_unpack_uint_rgba_row(gl_format format, GLuint n, const void *src, GLuint dst[][4]) argument
2839 _mesa_unpack_rgba_block(gl_format format, const void *src, GLint srcRowStride, GLfloat dst[][4], GLint dstRowStride, GLuint x, GLuint y, GLuint width, GLuint height) argument
2870 unpack_float_z_Z24_X8(GLuint n, const void *src, GLfloat *dst) argument
2884 unpack_float_z_X8_Z24(GLuint n, const void *src, GLfloat *dst) argument
2898 unpack_float_z_Z16(GLuint n, const void *src, GLfloat *dst) argument
2908 unpack_float_z_Z32(GLuint n, const void *src, GLfloat *dst) argument
2918 unpack_float_z_Z32F(GLuint n, const void *src, GLfloat *dst) argument
2924 unpack_float_z_Z32X24S8(GLuint n, const void *src, GLfloat *dst) argument
2940 _mesa_unpack_float_z_row(gl_format format, GLuint n, const void *src, GLfloat *dst) argument
2980 unpack_uint_z_Z24_X8(const void *src, GLuint *dst, GLuint n) argument
2991 unpack_uint_z_X8_Z24(const void *src, GLuint *dst, GLuint n) argument
3002 unpack_uint_z_Z16(const void *src, GLuint *dst, GLuint n) argument
3012 unpack_uint_z_Z32(const void *src, GLuint *dst, GLuint n) argument
3018 unpack_uint_z_Z32_FLOAT(const void *src, GLuint *dst, GLuint n) argument
3028 unpack_uint_z_Z32_FLOAT_X24S8(const void *src, GLuint *dst, GLuint n) argument
3044 _mesa_unpack_uint_z_row(gl_format format, GLuint n, const void *src, GLuint *dst) argument
3082 unpack_ubyte_s_S8(const void *src, GLubyte *dst, GLuint n) argument
3088 unpack_ubyte_s_Z24_S8(const void *src, GLubyte *dst, GLuint n) argument
3098 unpack_ubyte_s_S8_Z24(const void *src, GLubyte *dst, GLuint n) argument
3108 unpack_ubyte_s_Z32_FLOAT_X24S8(const void *src, GLubyte *dst, GLuint n) argument
3118 _mesa_unpack_ubyte_stencil_row(gl_format format, GLuint n, const void *src, GLubyte *dst) argument
3142 unpack_uint_24_8_depth_stencil_S8_Z24(const GLuint *src, GLuint *dst, GLuint n) argument
3153 unpack_uint_24_8_depth_stencil_Z24_S8(const GLuint *src, GLuint *dst, GLuint n) argument
3159 _mesa_unpack_uint_24_8_depth_stencil_row(gl_format format, GLuint n, const void *src, GLuint *dst) argument
[all...]
/external/mesa3d/src/mesa/main/
H A Dformat_unpack.c87 typedef void (*unpack_rgba_func)(const void *src, GLfloat dst[][4], GLuint n);
91 unpack_RGBA8888(const void *src, GLfloat dst[][4], GLuint n) argument
96 dst[i][RCOMP] = UBYTE_TO_FLOAT( (s[i] >> 24) );
97 dst[i][GCOMP] = UBYTE_TO_FLOAT( (s[i] >> 16) & 0xff );
98 dst[i][BCOMP] = UBYTE_TO_FLOAT( (s[i] >> 8) & 0xff );
99 dst[i][ACOMP] = UBYTE_TO_FLOAT( (s[i] ) & 0xff );
104 unpack_RGBA8888_REV(const void *src, GLfloat dst[][4], GLuint n) argument
109 dst[i][RCOMP] = UBYTE_TO_FLOAT( (s[i] ) & 0xff );
110 dst[i][GCOMP] = UBYTE_TO_FLOAT( (s[i] >> 8) & 0xff );
111 dst[
117 unpack_ARGB8888(const void *src, GLfloat dst[][4], GLuint n) argument
130 unpack_ARGB8888_REV(const void *src, GLfloat dst[][4], GLuint n) argument
143 unpack_RGBX8888(const void *src, GLfloat dst[][4], GLuint n) argument
156 unpack_RGBX8888_REV(const void *src, GLfloat dst[][4], GLuint n) argument
169 unpack_XRGB8888(const void *src, GLfloat dst[][4], GLuint n) argument
182 unpack_XRGB8888_REV(const void *src, GLfloat dst[][4], GLuint n) argument
195 unpack_RGB888(const void *src, GLfloat dst[][4], GLuint n) argument
208 unpack_BGR888(const void *src, GLfloat dst[][4], GLuint n) argument
221 unpack_RGB565(const void *src, GLfloat dst[][4], GLuint n) argument
234 unpack_RGB565_REV(const void *src, GLfloat dst[][4], GLuint n) argument
248 unpack_ARGB4444(const void *src, GLfloat dst[][4], GLuint n) argument
261 unpack_ARGB4444_REV(const void *src, GLfloat dst[][4], GLuint n) argument
274 unpack_RGBA5551(const void *src, GLfloat dst[][4], GLuint n) argument
287 unpack_ARGB1555(const void *src, GLfloat dst[][4], GLuint n) argument
300 unpack_ARGB1555_REV(const void *src, GLfloat dst[][4], GLuint n) argument
314 unpack_AL44(const void *src, GLfloat dst[][4], GLuint n) argument
327 unpack_AL88(const void *src, GLfloat dst[][4], GLuint n) argument
340 unpack_AL88_REV(const void *src, GLfloat dst[][4], GLuint n) argument
353 unpack_AL1616(const void *src, GLfloat dst[][4], GLuint n) argument
366 unpack_AL1616_REV(const void *src, GLfloat dst[][4], GLuint n) argument
379 unpack_RGB332(const void *src, GLfloat dst[][4], GLuint n) argument
393 unpack_A8(const void *src, GLfloat dst[][4], GLuint n) argument
406 unpack_A16(const void *src, GLfloat dst[][4], GLuint n) argument
419 unpack_L8(const void *src, GLfloat dst[][4], GLuint n) argument
432 unpack_L16(const void *src, GLfloat dst[][4], GLuint n) argument
445 unpack_I8(const void *src, GLfloat dst[][4], GLuint n) argument
458 unpack_I16(const void *src, GLfloat dst[][4], GLuint n) argument
471 unpack_YCBCR(const void *src, GLfloat dst[][4], GLuint n) argument
496 unpack_YCBCR_REV(const void *src, GLfloat dst[][4], GLuint n) argument
521 unpack_R8(const void *src, GLfloat dst[][4], GLuint n) argument
534 unpack_GR88(const void *src, GLfloat dst[][4], GLuint n) argument
547 unpack_RG88(const void *src, GLfloat dst[][4], GLuint n) argument
560 unpack_R16(const void *src, GLfloat dst[][4], GLuint n) argument
573 unpack_RG1616(const void *src, GLfloat dst[][4], GLuint n) argument
586 unpack_RG1616_REV(const void *src, GLfloat dst[][4], GLuint n) argument
599 unpack_ARGB2101010(const void *src, GLfloat dst[][4], GLuint n) argument
613 unpack_ABGR2101010_UINT(const void *src, GLfloat dst[][4], GLuint n) argument
627 unpack_Z24_S8(const void *src, GLfloat dst[][4], GLuint n) argument
644 unpack_S8_Z24(const void *src, GLfloat dst[][4], GLuint n) argument
661 unpack_Z16(const void *src, GLfloat dst[][4], GLuint n) argument
674 unpack_X8_Z24(const void *src, GLfloat dst[][4], GLuint n) argument
680 unpack_Z24_X8(const void *src, GLfloat dst[][4], GLuint n) argument
686 unpack_Z32(const void *src, GLfloat dst[][4], GLuint n) argument
699 unpack_Z32_FLOAT(const void *src, GLfloat dst[][4], GLuint n) argument
712 unpack_Z32_FLOAT_X24S8(const void *src, GLfloat dst[][4], GLuint n) argument
726 unpack_S8(const void *src, GLfloat dst[][4], GLuint n) argument
740 unpack_SRGB8(const void *src, GLfloat dst[][4], GLuint n) argument
753 unpack_SRGBA8(const void *src, GLfloat dst[][4], GLuint n) argument
766 unpack_SARGB8(const void *src, GLfloat dst[][4], GLuint n) argument
779 unpack_SL8(const void *src, GLfloat dst[][4], GLuint n) argument
792 unpack_SLA8(const void *src, GLfloat dst[][4], GLuint n) argument
805 unpack_SRGB_DXT1(const void *src, GLfloat dst[][4], GLuint n) argument
810 unpack_SRGBA_DXT1(const void *src, GLfloat dst[][4], GLuint n) argument
815 unpack_SRGBA_DXT3(const void *src, GLfloat dst[][4], GLuint n) argument
820 unpack_SRGBA_DXT5(const void *src, GLfloat dst[][4], GLuint n) argument
825 unpack_RGB_FXT1(const void *src, GLfloat dst[][4], GLuint n) argument
830 unpack_RGBA_FXT1(const void *src, GLfloat dst[][4], GLuint n) argument
835 unpack_RGB_DXT1(const void *src, GLfloat dst[][4], GLuint n) argument
840 unpack_RGBA_DXT1(const void *src, GLfloat dst[][4], GLuint n) argument
845 unpack_RGBA_DXT3(const void *src, GLfloat dst[][4], GLuint n) argument
850 unpack_RGBA_DXT5(const void *src, GLfloat dst[][4], GLuint n) argument
856 unpack_RGBA_FLOAT32(const void *src, GLfloat dst[][4], GLuint n) argument
869 unpack_RGBA_FLOAT16(const void *src, GLfloat dst[][4], GLuint n) argument
882 unpack_RGB_FLOAT32(const void *src, GLfloat dst[][4], GLuint n) argument
895 unpack_RGB_FLOAT16(const void *src, GLfloat dst[][4], GLuint n) argument
908 unpack_ALPHA_FLOAT32(const void *src, GLfloat dst[][4], GLuint n) argument
921 unpack_ALPHA_FLOAT16(const void *src, GLfloat dst[][4], GLuint n) argument
934 unpack_LUMINANCE_FLOAT32(const void *src, GLfloat dst[][4], GLuint n) argument
947 unpack_LUMINANCE_FLOAT16(const void *src, GLfloat dst[][4], GLuint n) argument
960 unpack_LUMINANCE_ALPHA_FLOAT32(const void *src, GLfloat dst[][4], GLuint n) argument
973 unpack_LUMINANCE_ALPHA_FLOAT16(const void *src, GLfloat dst[][4], GLuint n) argument
986 unpack_INTENSITY_FLOAT32(const void *src, GLfloat dst[][4], GLuint n) argument
999 unpack_INTENSITY_FLOAT16(const void *src, GLfloat dst[][4], GLuint n) argument
1012 unpack_R_FLOAT32(const void *src, GLfloat dst[][4], GLuint n) argument
1025 unpack_R_FLOAT16(const void *src, GLfloat dst[][4], GLuint n) argument
1038 unpack_RG_FLOAT32(const void *src, GLfloat dst[][4], GLuint n) argument
1051 unpack_RG_FLOAT16(const void *src, GLfloat dst[][4], GLuint n) argument
1065 unpack_RGBA_INT8(const void *src, GLfloat dst[][4], GLuint n) argument
1078 unpack_RGBA_INT16(const void *src, GLfloat dst[][4], GLuint n) argument
1091 unpack_RGBA_INT32(const void *src, GLfloat dst[][4], GLuint n) argument
1104 unpack_RGBA_UINT8(const void *src, GLfloat dst[][4], GLuint n) argument
1117 unpack_RGBA_UINT16(const void *src, GLfloat dst[][4], GLuint n) argument
1130 unpack_RGBA_UINT32(const void *src, GLfloat dst[][4], GLuint n) argument
1143 unpack_DUDV8(const void *src, GLfloat dst[][4], GLuint n) argument
1156 unpack_SIGNED_R8(const void *src, GLfloat dst[][4], GLuint n) argument
1169 unpack_SIGNED_RG88_REV(const void *src, GLfloat dst[][4], GLuint n) argument
1182 unpack_SIGNED_RGBX8888(const void *src, GLfloat dst[][4], GLuint n) argument
1195 unpack_SIGNED_RGBA8888(const void *src, GLfloat dst[][4], GLuint n) argument
1208 unpack_SIGNED_RGBA8888_REV(const void *src, GLfloat dst[][4], GLuint n) argument
1221 unpack_SIGNED_R16(const void *src, GLfloat dst[][4], GLuint n) argument
1234 unpack_SIGNED_GR1616(const void *src, GLfloat dst[][4], GLuint n) argument
1247 unpack_SIGNED_RGB_16(const void *src, GLfloat dst[][4], GLuint n) argument
1260 unpack_SIGNED_RGBA_16(const void *src, GLfloat dst[][4], GLuint n) argument
1273 unpack_RGBA_16(const void *src, GLfloat dst[][4], GLuint n) argument
1286 unpack_RED_RGTC1(const void *src, GLfloat dst[][4], GLuint n) argument
1292 unpack_SIGNED_RED_RGTC1(const void *src, GLfloat dst[][4], GLuint n) argument
1298 unpack_RG_RGTC2(const void *src, GLfloat dst[][4], GLuint n) argument
1304 unpack_SIGNED_RG_RGTC2(const void *src, GLfloat dst[][4], GLuint n) argument
1310 unpack_L_LATC1(const void *src, GLfloat dst[][4], GLuint n) argument
1316 unpack_SIGNED_L_LATC1(const void *src, GLfloat dst[][4], GLuint n) argument
1322 unpack_LA_LATC2(const void *src, GLfloat dst[][4], GLuint n) argument
1328 unpack_SIGNED_LA_LATC2(const void *src, GLfloat dst[][4], GLuint n) argument
1334 unpack_ETC1_RGB8(const void *src, GLfloat dst[][4], GLuint n) argument
1340 unpack_SIGNED_A8(const void *src, GLfloat dst[][4], GLuint n) argument
1353 unpack_SIGNED_L8(const void *src, GLfloat dst[][4], GLuint n) argument
1366 unpack_SIGNED_AL88(const void *src, GLfloat dst[][4], GLuint n) argument
1379 unpack_SIGNED_I8(const void *src, GLfloat dst[][4], GLuint n) argument
1392 unpack_SIGNED_A16(const void *src, GLfloat dst[][4], GLuint n) argument
1405 unpack_SIGNED_L16(const void *src, GLfloat dst[][4], GLuint n) argument
1418 unpack_SIGNED_AL1616(const void *src, GLfloat dst[][4], GLuint n) argument
1431 unpack_SIGNED_I16(const void *src, GLfloat dst[][4], GLuint n) argument
1444 unpack_RGB9_E5_FLOAT(const void *src, GLfloat dst[][4], GLuint n) argument
1455 unpack_R11_G11_B10_FLOAT(const void *src, GLfloat dst[][4], GLuint n) argument
1620 _mesa_unpack_rgba_row(gl_format format, GLuint n, const void *src, GLfloat dst[][4]) argument
1634 unpack_ubyte_RGBA8888(const void *src, GLubyte dst[][4], GLuint n) argument
1647 unpack_ubyte_RGBA8888_REV(const void *src, GLubyte dst[][4], GLuint n) argument
1660 unpack_ubyte_ARGB8888(const void *src, GLubyte dst[][4], GLuint n) argument
1673 unpack_ubyte_ARGB8888_REV(const void *src, GLubyte dst[][4], GLuint n) argument
1686 unpack_ubyte_RGBX8888(const void *src, GLubyte dst[][4], GLuint n) argument
1699 unpack_ubyte_RGBX8888_REV(const void *src, GLubyte dst[][4], GLuint n) argument
1712 unpack_ubyte_XRGB8888(const void *src, GLubyte dst[][4], GLuint n) argument
1725 unpack_ubyte_XRGB8888_REV(const void *src, GLubyte dst[][4], GLuint n) argument
1738 unpack_ubyte_RGB888(const void *src, GLubyte dst[][4], GLuint n) argument
1751 unpack_ubyte_BGR888(const void *src, GLubyte dst[][4], GLuint n) argument
1764 unpack_ubyte_RGB565(const void *src, GLubyte dst[][4], GLuint n) argument
1777 unpack_ubyte_RGB565_REV(const void *src, GLubyte dst[][4], GLuint n) argument
1791 unpack_ubyte_ARGB4444(const void *src, GLubyte dst[][4], GLuint n) argument
1804 unpack_ubyte_ARGB4444_REV(const void *src, GLubyte dst[][4], GLuint n) argument
1817 unpack_ubyte_RGBA5551(const void *src, GLubyte dst[][4], GLuint n) argument
1830 unpack_ubyte_ARGB1555(const void *src, GLubyte dst[][4], GLuint n) argument
1843 unpack_ubyte_ARGB1555_REV(const void *src, GLubyte dst[][4], GLuint n) argument
1857 unpack_ubyte_AL44(const void *src, GLubyte dst[][4], GLuint n) argument
1870 unpack_ubyte_AL88(const void *src, GLubyte dst[][4], GLuint n) argument
1883 unpack_ubyte_AL88_REV(const void *src, GLubyte dst[][4], GLuint n) argument
1896 unpack_ubyte_RGB332(const void *src, GLubyte dst[][4], GLuint n) argument
1909 unpack_ubyte_A8(const void *src, GLubyte dst[][4], GLuint n) argument
1922 unpack_ubyte_L8(const void *src, GLubyte dst[][4], GLuint n) argument
1936 unpack_ubyte_I8(const void *src, GLubyte dst[][4], GLuint n) argument
1949 unpack_ubyte_R8(const void *src, GLubyte dst[][4], GLuint n) argument
1962 unpack_ubyte_GR88(const void *src, GLubyte dst[][4], GLuint n) argument
1975 unpack_ubyte_RG88(const void *src, GLubyte dst[][4], GLuint n) argument
1993 _mesa_unpack_ubyte_rgba_row(gl_format format, GLuint n, const void *src, GLubyte dst[][4]) argument
2104 unpack_int_rgba_RGBA_UINT32(const GLuint *src, GLuint dst[][4], GLuint n) argument
2110 unpack_int_rgba_RGBA_UINT16(const GLushort *src, GLuint dst[][4], GLuint n) argument
2123 unpack_int_rgba_RGBA_INT16(const GLshort *src, GLuint dst[][4], GLuint n) argument
2136 unpack_int_rgba_RGBA_UINT8(const GLubyte *src, GLuint dst[][4], GLuint n) argument
2149 unpack_int_rgba_RGBA_INT8(const GLbyte *src, GLuint dst[][4], GLuint n) argument
2162 unpack_int_rgba_ARGB8888(const GLbyte *src, GLuint dst[][4], GLuint n) argument
2175 unpack_int_rgba_XRGB8888(const GLbyte *src, GLuint dst[][4], GLuint n) argument
2188 unpack_int_rgba_RGB_UINT32(const GLuint *src, GLuint dst[][4], GLuint n) argument
2201 unpack_int_rgba_RGB_UINT16(const GLushort *src, GLuint dst[][4], GLuint n) argument
2214 unpack_int_rgba_RGB_INT16(const GLshort *src, GLuint dst[][4], GLuint n) argument
2227 unpack_int_rgba_RGB_UINT8(const GLubyte *src, GLuint dst[][4], GLuint n) argument
2240 unpack_int_rgba_RGB_INT8(const GLbyte *src, GLuint dst[][4], GLuint n) argument
2253 unpack_int_rgba_RG_UINT32(const GLuint *src, GLuint dst[][4], GLuint n) argument
2266 unpack_int_rgba_RG_UINT16(const GLushort *src, GLuint dst[][4], GLuint n) argument
2279 unpack_int_rgba_RG_INT16(const GLshort *src, GLuint dst[][4], GLuint n) argument
2292 unpack_int_rgba_RG_UINT8(const GLubyte *src, GLuint dst[][4], GLuint n) argument
2305 unpack_int_rgba_RG_INT8(const GLbyte *src, GLuint dst[][4], GLuint n) argument
2318 unpack_int_rgba_R_UINT32(const GLuint *src, GLuint dst[][4], GLuint n) argument
2331 unpack_int_rgba_R_UINT16(const GLushort *src, GLuint dst[][4], GLuint n) argument
2344 unpack_int_rgba_R_INT16(const GLshort *src, GLuint dst[][4], GLuint n) argument
2357 unpack_int_rgba_R_UINT8(const GLubyte *src, GLuint dst[][4], GLuint n) argument
2370 unpack_int_rgba_R_INT8(const GLbyte *src, GLuint dst[][4], GLuint n) argument
2383 unpack_int_rgba_ALPHA_UINT32(const GLuint *src, GLuint dst[][4], GLuint n) argument
2394 unpack_int_rgba_ALPHA_UINT16(const GLushort *src, GLuint dst[][4], GLuint n) argument
2405 unpack_int_rgba_ALPHA_INT16(const GLshort *src, GLuint dst[][4], GLuint n) argument
2416 unpack_int_rgba_ALPHA_UINT8(const GLubyte *src, GLuint dst[][4], GLuint n) argument
2427 unpack_int_rgba_ALPHA_INT8(const GLbyte *src, GLuint dst[][4], GLuint n) argument
2438 unpack_int_rgba_LUMINANCE_UINT32(const GLuint *src, GLuint dst[][4], GLuint n) argument
2449 unpack_int_rgba_LUMINANCE_UINT16(const GLushort *src, GLuint dst[][4], GLuint n) argument
2460 unpack_int_rgba_LUMINANCE_INT16(const GLshort *src, GLuint dst[][4], GLuint n) argument
2471 unpack_int_rgba_LUMINANCE_UINT8(const GLubyte *src, GLuint dst[][4], GLuint n) argument
2482 unpack_int_rgba_LUMINANCE_INT8(const GLbyte *src, GLuint dst[][4], GLuint n) argument
2494 unpack_int_rgba_LUMINANCE_ALPHA_UINT32(const GLuint *src, GLuint dst[][4], GLuint n) argument
2505 unpack_int_rgba_LUMINANCE_ALPHA_UINT16(const GLushort *src, GLuint dst[][4], GLuint n) argument
2516 unpack_int_rgba_LUMINANCE_ALPHA_INT16(const GLshort *src, GLuint dst[][4], GLuint n) argument
2527 unpack_int_rgba_LUMINANCE_ALPHA_UINT8(const GLubyte *src, GLuint dst[][4], GLuint n) argument
2538 unpack_int_rgba_LUMINANCE_ALPHA_INT8(const GLbyte *src, GLuint dst[][4], GLuint n) argument
2549 unpack_int_rgba_INTENSITY_UINT32(const GLuint *src, GLuint dst[][4], GLuint n) argument
2559 unpack_int_rgba_INTENSITY_UINT16(const GLushort *src, GLuint dst[][4], GLuint n) argument
2569 unpack_int_rgba_INTENSITY_INT16(const GLshort *src, GLuint dst[][4], GLuint n) argument
2579 unpack_int_rgba_INTENSITY_UINT8(const GLubyte *src, GLuint dst[][4], GLuint n) argument
2589 unpack_int_rgba_INTENSITY_INT8(const GLbyte *src, GLuint dst[][4], GLuint n) argument
2599 unpack_int_rgba_ARGB2101010_UINT(const GLuint *src, GLuint dst[][4], GLuint n) argument
2613 unpack_int_rgba_ABGR2101010_UINT(const GLuint *src, GLuint dst[][4], GLuint n) argument
2627 unpack_int_rgba_ARGB2101010(const GLuint *src, GLuint dst[][4], GLuint n) argument
2641 _mesa_unpack_uint_rgba_row(gl_format format, GLuint n, const void *src, GLuint dst[][4]) argument
2839 _mesa_unpack_rgba_block(gl_format format, const void *src, GLint srcRowStride, GLfloat dst[][4], GLint dstRowStride, GLuint x, GLuint y, GLuint width, GLuint height) argument
2870 unpack_float_z_Z24_X8(GLuint n, const void *src, GLfloat *dst) argument
2884 unpack_float_z_X8_Z24(GLuint n, const void *src, GLfloat *dst) argument
2898 unpack_float_z_Z16(GLuint n, const void *src, GLfloat *dst) argument
2908 unpack_float_z_Z32(GLuint n, const void *src, GLfloat *dst) argument
2918 unpack_float_z_Z32F(GLuint n, const void *src, GLfloat *dst) argument
2924 unpack_float_z_Z32X24S8(GLuint n, const void *src, GLfloat *dst) argument
2940 _mesa_unpack_float_z_row(gl_format format, GLuint n, const void *src, GLfloat *dst) argument
2980 unpack_uint_z_Z24_X8(const void *src, GLuint *dst, GLuint n) argument
2991 unpack_uint_z_X8_Z24(const void *src, GLuint *dst, GLuint n) argument
3002 unpack_uint_z_Z16(const void *src, GLuint *dst, GLuint n) argument
3012 unpack_uint_z_Z32(const void *src, GLuint *dst, GLuint n) argument
3018 unpack_uint_z_Z32_FLOAT(const void *src, GLuint *dst, GLuint n) argument
3028 unpack_uint_z_Z32_FLOAT_X24S8(const void *src, GLuint *dst, GLuint n) argument
3044 _mesa_unpack_uint_z_row(gl_format format, GLuint n, const void *src, GLuint *dst) argument
3082 unpack_ubyte_s_S8(const void *src, GLubyte *dst, GLuint n) argument
3088 unpack_ubyte_s_Z24_S8(const void *src, GLubyte *dst, GLuint n) argument
3098 unpack_ubyte_s_S8_Z24(const void *src, GLubyte *dst, GLuint n) argument
3108 unpack_ubyte_s_Z32_FLOAT_X24S8(const void *src, GLubyte *dst, GLuint n) argument
3118 _mesa_unpack_ubyte_stencil_row(gl_format format, GLuint n, const void *src, GLubyte *dst) argument
3142 unpack_uint_24_8_depth_stencil_S8_Z24(const GLuint *src, GLuint *dst, GLuint n) argument
3153 unpack_uint_24_8_depth_stencil_Z24_S8(const GLuint *src, GLuint *dst, GLuint n) argument
3159 _mesa_unpack_uint_24_8_depth_stencil_row(gl_format format, GLuint n, const void *src, GLuint *dst) argument
[all...]
/external/eigen/unsupported/Eigen/src/FFT/
H A Dei_fftw_impl.h60 void fwd(complex_type * dst,complex_type * src,int nfft) { argument
61 if (m_plan==NULL) m_plan = fftwf_plan_dft_1d(nfft,src,dst, FFTW_FORWARD, FFTW_ESTIMATE|FFTW_PRESERVE_INPUT);
62 fftwf_execute_dft( m_plan, src,dst);
65 void inv(complex_type * dst,complex_type * src,int nfft) { argument
66 if (m_plan==NULL) m_plan = fftwf_plan_dft_1d(nfft,src,dst, FFTW_BACKWARD , FFTW_ESTIMATE|FFTW_PRESERVE_INPUT);
67 fftwf_execute_dft( m_plan, src,dst);
70 void fwd(complex_type * dst,scalar_type * src,int nfft) { argument
71 if (m_plan==NULL) m_plan = fftwf_plan_dft_r2c_1d(nfft,src,dst,FFTW_ESTIMATE|FFTW_PRESERVE_INPUT);
72 fftwf_execute_dft_r2c( m_plan,src,dst);
75 void inv(scalar_type * dst,complex_typ argument
82 fwd2( complex_type * dst,complex_type * src,int n0,int n1) argument
87 inv2( complex_type * dst,complex_type * src,int n0,int n1) argument
103 fwd(complex_type * dst,complex_type * src,int nfft) argument
108 inv(complex_type * dst,complex_type * src,int nfft) argument
113 fwd(complex_type * dst,scalar_type * src,int nfft) argument
118 inv(scalar_type * dst,complex_type * src,int nfft) argument
124 fwd2( complex_type * dst,complex_type * src,int n0,int n1) argument
129 inv2( complex_type * dst,complex_type * src,int n0,int n1) argument
144 fwd(complex_type * dst,complex_type * src,int nfft) argument
149 inv(complex_type * dst,complex_type * src,int nfft) argument
154 fwd(complex_type * dst,scalar_type * src,int nfft) argument
159 inv(scalar_type * dst,complex_type * src,int nfft) argument
165 fwd2( complex_type * dst,complex_type * src,int n0,int n1) argument
170 inv2( complex_type * dst,complex_type * src,int n0,int n1) argument
190 fwd( Complex * dst,const Complex *src,int nfft) argument
197 fwd( Complex * dst,const Scalar * src,int nfft) argument
204 fwd2(Complex * dst, const Complex * src, int n0,int n1) argument
211 inv(Complex * dst,const Complex *src,int nfft) argument
218 inv( Scalar * dst,const Complex * src,int nfft) argument
225 inv2(Complex * dst, const Complex * src, int n0,int n1) argument
239 get_plan(int nfft,bool inverse,void * dst,const void * src) argument
248 get_plan(int n0,int n1,bool inverse,void * dst,const void * src) argument
[all...]
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/
H A Dimageformats.h26 static void readColor(gl::ColorF *dst, const L8 *src) argument
29 dst->red = lum;
30 dst->green = lum;
31 dst->blue = lum;
32 dst->alpha = 1.0f;
35 static void writeColor(L8 *dst, const gl::ColorF *src) argument
37 dst->L = gl::floatToNormalized<unsigned char>((src->red + src->green + src->blue) / 3.0f);
40 static void average(L8 *dst, const L8 *src1, const L8 *src2) argument
42 dst->L = gl::average(src1->L, src2->L);
50 static void readColor(gl::ColorF *dst, cons argument
58 readColor(gl::ColorUI *dst, const R8 *src) argument
66 writeColor(R8 *dst, const gl::ColorF *src) argument
71 writeColor(R8 *dst, const gl::ColorUI *src) argument
76 average(R8 *dst, const R8 *src1, const R8 *src2) argument
86 readColor(gl::ColorF *dst, const A8 *src) argument
94 writeColor(A8 *dst, const gl::ColorF *src) argument
99 average(A8 *dst, const A8 *src1, const A8 *src2) argument
110 readColor(gl::ColorF *dst, const L8A8 *src) argument
119 writeColor(L8A8 *dst, const gl::ColorF *src) argument
125 average(L8A8 *dst, const L8A8 *src1, const L8A8 *src2) argument
136 readColor(gl::ColorF *dst, const A8L8 *src) argument
145 writeColor(A8L8 *dst, const gl::ColorF *src) argument
151 average(A8L8 *dst, const A8L8 *src1, const A8L8 *src2) argument
162 readColor(gl::ColorF *dst, const R8G8 *src) argument
170 readColor(gl::ColorUI *dst, const R8G8 *src) argument
178 writeColor(R8G8 *dst, const gl::ColorF *src) argument
184 writeColor(R8G8 *dst, const gl::ColorUI *src) argument
190 average(R8G8 *dst, const R8G8 *src1, const R8G8 *src2) argument
202 readColor(gl::ColorF *dst, const R8G8B8 *src) argument
210 readColor(gl::ColorUI *dst, const R8G8B8 *src) argument
218 writeColor(R8G8B8 *dst, const gl::ColorF *src) argument
225 writeColor(R8G8B8 *dst, const gl::ColorUI *src) argument
232 average(R8G8B8 *dst, const R8G8B8 *src1, const R8G8B8 *src2) argument
246 readColor(gl::ColorF *dst, const B8G8R8 *src) argument
254 readColor(gl::ColorUI *dst, const B8G8R8 *src) argument
262 writeColor(B8G8R8 *dst, const gl::ColorF *src) argument
269 writeColor(B8G8R8 *dst, const gl::ColorUI *src) argument
276 average(B8G8R8 *dst, const B8G8R8 *src1, const B8G8R8 *src2) argument
288 readColor(gl::ColorF *dst, const R5G6B5 *src) argument
296 writeColor(R5G6B5 *dst, const gl::ColorF *src) argument
303 average(R5G6B5 *dst, const R5G6B5 *src1, const R5G6B5 *src2) argument
318 readColor(gl::ColorF *dst, const A8R8G8B8 *src) argument
326 readColor(gl::ColorUI *dst, const A8R8G8B8 *src) argument
334 writeColor(A8R8G8B8 *dst, const gl::ColorF *src) argument
342 writeColor(A8R8G8B8 *dst, const gl::ColorUI *src) argument
350 average(A8R8G8B8 *dst, const A8R8G8B8 *src1, const A8R8G8B8 *src2) argument
363 readColor(gl::ColorF *dst, const R8G8B8A8 *src) argument
371 readColor(gl::ColorUI *dst, const R8G8B8A8 *src) argument
379 writeColor(R8G8B8A8 *dst, const gl::ColorF *src) argument
387 writeColor(R8G8B8A8 *dst, const gl::ColorUI *src) argument
395 average(R8G8B8A8 *dst, const R8G8B8A8 *src1, const R8G8B8A8 *src2) argument
408 readColor(gl::ColorF *dst, const B8G8R8A8 *src) argument
416 readColor(gl::ColorUI *dst, const B8G8R8A8 *src) argument
424 writeColor(B8G8R8A8 *dst, const gl::ColorF *src) argument
432 writeColor(B8G8R8A8 *dst, const gl::ColorUI *src) argument
440 average(B8G8R8A8 *dst, const B8G8R8A8 *src1, const B8G8R8A8 *src2) argument
453 readColor(gl::ColorF *dst, const B8G8R8X8 *src) argument
461 readColor(gl::ColorUI *dst, const B8G8R8X8 *src) argument
469 writeColor(B8G8R8X8 *dst, const gl::ColorF *src) argument
477 writeColor(B8G8R8X8 *dst, const gl::ColorUI *src) argument
485 average(B8G8R8X8 *dst, const B8G8R8X8 *src1, const B8G8R8X8 *src2) argument
496 readColor(gl::ColorF *dst, const B5G5R5A1 *src) argument
504 writeColor(B5G5R5A1 *dst, const gl::ColorF *src) argument
512 average(B5G5R5A1 *dst, const B5G5R5A1 *src1, const B5G5R5A1 *src2) argument
525 readColor(gl::ColorF *dst, const R5G5B5A1 *src) argument
533 writeColor(R5G5B5A1 *dst, const gl::ColorF *src) argument
541 average(R5G5B5A1 *dst, const R5G5B5A1 *src1, const R5G5B5A1 *src2) argument
557 readColor(gl::ColorF *dst, const R4G4B4A4 *src) argument
565 writeColor(R4G4B4A4 *dst, const gl::ColorF *src) argument
573 average(R4G4B4A4 *dst, const R4G4B4A4 *src1, const R4G4B4A4 *src2) argument
589 readColor(gl::ColorF *dst, const A4R4G4B4 *src) argument
597 writeColor(A4R4G4B4 *dst, const gl::ColorF *src) argument
605 average(A4R4G4B4 *dst, const A4R4G4B4 *src1, const A4R4G4B4 *src2) argument
621 readColor(gl::ColorF *dst, const B4G4R4A4 *src) argument
629 writeColor(B4G4R4A4 *dst, const gl::ColorF *src) argument
637 average(B4G4R4A4 *dst, const B4G4R4A4 *src1, const B4G4R4A4 *src2) argument
650 readColor(gl::ColorF *dst, const R16 *src) argument
658 readColor(gl::ColorUI *dst, const R16 *src) argument
666 writeColor(R16 *dst, const gl::ColorF *src) argument
671 writeColor(R16 *dst, const gl::ColorUI *src) argument
676 average(R16 *dst, const R16 *src1, const R16 *src2) argument
687 readColor(gl::ColorF *dst, const R16G16 *src) argument
695 readColor(gl::ColorUI *dst, const R16G16 *src) argument
703 writeColor(R16G16 *dst, const gl::ColorF *src) argument
709 writeColor(R16G16 *dst, const gl::ColorUI *src) argument
715 average(R16G16 *dst, const R16G16 *src1, const R16G16 *src2) argument
728 readColor(gl::ColorF *dst, const R16G16B16 *src) argument
736 readColor(gl::ColorUI *dst, const R16G16B16 *src) argument
744 writeColor(R16G16B16 *dst, const gl::ColorF *src) argument
751 writeColor(R16G16B16 *dst, const gl::ColorUI *src) argument
758 average(R16G16B16 *dst, const R16G16B16 *src1, const R16G16B16 *src2) argument
773 readColor(gl::ColorF *dst, const R16G16B16A16 *src) argument
781 readColor(gl::ColorUI *dst, const R16G16B16A16 *src) argument
789 writeColor(R16G16B16A16 *dst, const gl::ColorF *src) argument
797 writeColor(R16G16B16A16 *dst, const gl::ColorUI *src) argument
805 average(R16G16B16A16 *dst, const R16G16B16A16 *src1, const R16G16B16A16 *src2) argument
818 readColor(gl::ColorF *dst, const R32 *src) argument
826 readColor(gl::ColorUI *dst, const R32 *src) argument
834 writeColor(R32 *dst, const gl::ColorF *src) argument
839 writeColor(R32 *dst, const gl::ColorUI *src) argument
844 average(R32 *dst, const R32 *src1, const R32 *src2) argument
855 readColor(gl::ColorF *dst, const R32G32 *src) argument
863 readColor(gl::ColorUI *dst, const R32G32 *src) argument
871 writeColor(R32G32 *dst, const gl::ColorF *src) argument
877 writeColor(R32G32 *dst, const gl::ColorUI *src) argument
883 average(R32G32 *dst, const R32G32 *src1, const R32G32 *src2) argument
896 readColor(gl::ColorF *dst, const R32G32B32 *src) argument
904 readColor(gl::ColorUI *dst, const R32G32B32 *src) argument
912 writeColor(R32G32B32 *dst, const gl::ColorF *src) argument
919 writeColor(R32G32B32 *dst, const gl::ColorUI *src) argument
926 average(R32G32B32 *dst, const R32G32B32 *src1, const R32G32B32 *src2) argument
941 readColor(gl::ColorF *dst, const R32G32B32A32 *src) argument
949 readColor(gl::ColorUI *dst, const R32G32B32A32 *src) argument
957 writeColor(R32G32B32A32 *dst, const gl::ColorF *src) argument
965 writeColor(R32G32B32A32 *dst, const gl::ColorUI *src) argument
973 average(R32G32B32A32 *dst, const R32G32B32A32 *src1, const R32G32B32A32 *src2) argument
986 readColor(gl::ColorF *dst, const R8S *src) argument
994 readColor(gl::ColorI *dst, const R8S *src) argument
1002 writeColor(R8S *dst, const gl::ColorF *src) argument
1007 writeColor(R8S *dst, const gl::ColorI *src) argument
1012 average(R8S *dst, const R8S *src1, const R8S *src2) argument
1023 readColor(gl::ColorF *dst, const R8G8S *src) argument
1031 readColor(gl::ColorI *dst, const R8G8S *src) argument
1039 writeColor(R8G8S *dst, const gl::ColorF *src) argument
1045 writeColor(R8G8S *dst, const gl::ColorI *src) argument
1051 average(R8G8S *dst, const R8G8S *src1, const R8G8S *src2) argument
1064 readColor(gl::ColorF *dst, const R8G8B8S *src) argument
1072 readColor(gl::ColorI *dst, const R8G8B8S *src) argument
1080 writeColor(R8G8B8S *dst, const gl::ColorF *src) argument
1087 writeColor(R8G8B8S *dst, const gl::ColorI *src) argument
1094 average(R8G8B8S *dst, const R8G8B8S *src1, const R8G8B8S *src2) argument
1109 readColor(gl::ColorF *dst, const R8G8B8A8S *src) argument
1117 readColor(gl::ColorI *dst, const R8G8B8A8S *src) argument
1125 writeColor(R8G8B8A8S *dst, const gl::ColorF *src) argument
1133 writeColor(R8G8B8A8S *dst, const gl::ColorI *src) argument
1141 average(R8G8B8A8S *dst, const R8G8B8A8S *src1, const R8G8B8A8S *src2) argument
1154 readColor(gl::ColorF *dst, const R16S *src) argument
1162 readColor(gl::ColorI *dst, const R16S *src) argument
1170 writeColor(R16S *dst, const gl::ColorF *src) argument
1175 writeColor(R16S *dst, const gl::ColorI *src) argument
1180 average(R16S *dst, const R16S *src1, const R16S *src2) argument
1191 readColor(gl::ColorF *dst, const R16G16S *src) argument
1199 readColor(gl::ColorI *dst, const R16G16S *src) argument
1207 writeColor(R16G16S *dst, const gl::ColorF *src) argument
1213 writeColor(R16G16S *dst, const gl::ColorI *src) argument
1219 average(R16G16S *dst, const R16G16S *src1, const R16G16S *src2) argument
1232 readColor(gl::ColorF *dst, const R16G16B16S *src) argument
1240 readColor(gl::ColorI *dst, const R16G16B16S *src) argument
1248 writeColor(R16G16B16S *dst, const gl::ColorF *src) argument
1255 writeColor(R16G16B16S *dst, const gl::ColorI *src) argument
1262 average(R16G16B16S *dst, const R16G16B16S *src1, const R16G16B16S *src2) argument
1277 readColor(gl::ColorF *dst, const R16G16B16A16S *src) argument
1285 readColor(gl::ColorI *dst, const R16G16B16A16S *src) argument
1293 writeColor(R16G16B16A16S *dst, const gl::ColorF *src) argument
1301 writeColor(R16G16B16A16S *dst, const gl::ColorI *src) argument
1309 average(R16G16B16A16S *dst, const R16G16B16A16S *src1, const R16G16B16A16S *src2) argument
1322 readColor(gl::ColorF *dst, const R32S *src) argument
1330 readColor(gl::ColorI *dst, const R32S *src) argument
1338 writeColor(R32S *dst, const gl::ColorF *src) argument
1343 writeColor(R32S *dst, const gl::ColorI *src) argument
1348 average(R32S *dst, const R32S *src1, const R32S *src2) argument
1359 readColor(gl::ColorF *dst, const R32G32S *src) argument
1367 readColor(gl::ColorI *dst, const R32G32S *src) argument
1375 writeColor(R32G32S *dst, const gl::ColorF *src) argument
1381 writeColor(R32G32S *dst, const gl::ColorI *src) argument
1387 average(R32G32S *dst, const R32G32S *src1, const R32G32S *src2) argument
1400 readColor(gl::ColorF *dst, const R32G32B32S *src) argument
1408 readColor(gl::ColorI *dst, const R32G32B32S *src) argument
1416 writeColor(R32G32B32S *dst, const gl::ColorF *src) argument
1423 writeColor(R32G32B32S *dst, const gl::ColorI *src) argument
1430 average(R32G32B32S *dst, const R32G32B32S *src1, const R32G32B32S *src2) argument
1445 readColor(gl::ColorF *dst, const R32G32B32A32S *src) argument
1453 readColor(gl::ColorI *dst, const R32G32B32A32S *src) argument
1461 writeColor(R32G32B32A32S *dst, const gl::ColorF *src) argument
1469 writeColor(R32G32B32A32S *dst, const gl::ColorI *src) argument
1477 average(R32G32B32A32S *dst, const R32G32B32A32S *src1, const R32G32B32A32S *src2) argument
1493 readColor(gl::ColorF *dst, const A16B16G16R16F *src) argument
1501 writeColor(A16B16G16R16F *dst, const gl::ColorF *src) argument
1509 average(A16B16G16R16F *dst, const A16B16G16R16F *src1, const A16B16G16R16F *src2) argument
1525 readColor(gl::ColorF *dst, const R16G16B16A16F *src) argument
1533 writeColor(R16G16B16A16F *dst, const gl::ColorF *src) argument
1541 average(R16G16B16A16F *dst, const R16G16B16A16F *src1, const R16G16B16A16F *src2) argument
1554 readColor(gl::ColorF *dst, const R16F *src) argument
1562 writeColor(R16F *dst, const gl::ColorF *src) argument
1567 average(R16F *dst, const R16F *src1, const R16F *src2) argument
1577 readColor(gl::ColorF *dst, const A16F *src) argument
1585 writeColor(A16F *dst, const gl::ColorF *src) argument
1590 average(A16F *dst, const A16F *src1, const A16F *src2) argument
1600 readColor(gl::ColorF *dst, const L16F *src) argument
1609 writeColor(L16F *dst, const gl::ColorF *src) argument
1614 average(L16F *dst, const L16F *src1, const L16F *src2) argument
1625 readColor(gl::ColorF *dst, const L16A16F *src) argument
1634 writeColor(L16A16F *dst, const gl::ColorF *src) argument
1640 average(L16A16F *dst, const L16A16F *src1, const L16A16F *src2) argument
1652 readColor(gl::ColorF *dst, const R16G16F *src) argument
1660 writeColor(R16G16F *dst, const gl::ColorF *src) argument
1666 average(R16G16F *dst, const R16G16F *src1, const R16G16F *src2) argument
1679 readColor(gl::ColorF *dst, const R16G16B16F *src) argument
1687 writeColor(R16G16B16F *dst, const gl::ColorF *src) argument
1694 average(R16G16B16F *dst, const R16G16B16F *src1, const R16G16B16F *src2) argument
1709 readColor(gl::ColorF *dst, const A32B32G32R32F *src) argument
1717 writeColor(A32B32G32R32F *dst, const gl::ColorF *src) argument
1725 average(A32B32G32R32F *dst, const A32B32G32R32F *src1, const A32B32G32R32F *src2) argument
1741 readColor(gl::ColorF *dst, const R32G32B32A32F *src) argument
1749 writeColor(R32G32B32A32F *dst, const gl::ColorF *src) argument
1757 average(R32G32B32A32F *dst, const R32G32B32A32F *src1, const R32G32B32A32F *src2) argument
1770 readColor(gl::ColorF *dst, const R32F *src) argument
1778 writeColor(R32F *dst, const gl::ColorF *src) argument
1783 average(R32F *dst, const R32F *src1, const R32F *src2) argument
1793 readColor(gl::ColorF *dst, const A32F *src) argument
1801 writeColor(A32F *dst, const gl::ColorF *src) argument
1806 average(A32F *dst, const A32F *src1, const A32F *src2) argument
1816 readColor(gl::ColorF *dst, const L32F *src) argument
1824 writeColor(L32F *dst, const gl::ColorF *src) argument
1829 average(L32F *dst, const L32F *src1, const L32F *src2) argument
1840 readColor(gl::ColorF *dst, const L32A32F *src) argument
1848 writeColor(L32A32F *dst, const gl::ColorF *src) argument
1854 average(L32A32F *dst, const L32A32F *src1, const L32A32F *src2) argument
1866 readColor(gl::ColorF *dst, const R32G32F *src) argument
1874 writeColor(R32G32F *dst, const gl::ColorF *src) argument
1880 average(R32G32F *dst, const R32G32F *src1, const R32G32F *src2) argument
1893 readColor(gl::ColorF *dst, const R32G32B32F *src) argument
1901 writeColor(R32G32B32F *dst, const gl::ColorF *src) argument
1908 average(R32G32B32F *dst, const R32G32B32F *src1, const R32G32B32F *src2) argument
1923 readColor(gl::ColorF *dst, const R10G10B10A2 *src) argument
1931 readColor(gl::ColorUI *dst, const R10G10B10A2 *src) argument
1939 writeColor(R10G10B10A2 *dst, const gl::ColorF *src) argument
1947 writeColor(R10G10B10A2 *dst, const gl::ColorUI *src) argument
1955 average(R10G10B10A2 *dst, const R10G10B10A2 *src1, const R10G10B10A2 *src2) argument
1971 readColor(gl::ColorF *dst, const R9G9B9E5 *src) argument
1977 writeColor(R9G9B9E5 *dst, const gl::ColorF *src) argument
1984 average(R9G9B9E5 *dst, const R9G9B9E5 *src1, const R9G9B9E5 *src2) argument
2004 readColor(gl::ColorF *dst, const R11G11B10F *src) argument
2012 writeColor(R11G11B10F *dst, const gl::ColorF *src) argument
2019 average(R11G11B10F *dst, const R11G11B10F *src1, const R11G11B10F *src2) argument
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/arm/neon/
H A Dcopymem_neon.c16 unsigned char *dst,
23 vst1_u8(dst, vtmp);
25 dst += dst_stride;
32 unsigned char *dst,
39 vst1_u8(dst, vtmp);
41 dst += dst_stride;
48 unsigned char *dst,
55 vst1q_u8(dst, qtmp);
57 dst += dst_stride;
13 vp8_copy_mem8x4_neon( unsigned char *src, int src_stride, unsigned char *dst, int dst_stride) argument
29 vp8_copy_mem8x8_neon( unsigned char *src, int src_stride, unsigned char *dst, int dst_stride) argument
45 vp8_copy_mem16x16_neon( unsigned char *src, int src_stride, unsigned char *dst, int dst_stride) argument
/external/libvpx/libvpx/vp8/common/arm/neon/
H A Dcopymem_neon.c16 unsigned char *dst,
23 vst1_u8(dst, vtmp);
25 dst += dst_stride;
32 unsigned char *dst,
39 vst1_u8(dst, vtmp);
41 dst += dst_stride;
48 unsigned char *dst,
55 vst1q_u8(dst, qtmp);
57 dst += dst_stride;
13 vp8_copy_mem8x4_neon( unsigned char *src, int src_stride, unsigned char *dst, int dst_stride) argument
29 vp8_copy_mem8x8_neon( unsigned char *src, int src_stride, unsigned char *dst, int dst_stride) argument
45 vp8_copy_mem16x16_neon( unsigned char *src, int src_stride, unsigned char *dst, int dst_stride) argument

Completed in 1511 milliseconds

1234567891011>>