Home
last modified time | relevance | path

Searched refs:src32 (Results 1 - 14 of 14) sorted by relevance

/third_party/ffmpeg/libavcodec/
H A Dpcm-blurayenc.c114 const int32_t *src32; in pcm_bluray_encode_frame() local
133 src32 = (const int32_t *)frame->data[0]; in pcm_bluray_encode_frame()
153 bytestream2_put_be24u(&pb, (*src32++) >> 8); in pcm_bluray_encode_frame()
179 bytestream2_put_be24u(&pb, (*src32++) >> 8); in pcm_bluray_encode_frame()
199 bytestream2_put_be24u(&pb, src32[0] >> 8); in pcm_bluray_encode_frame()
200 bytestream2_put_be24u(&pb, src32[1] >> 8); in pcm_bluray_encode_frame()
201 bytestream2_put_be24u(&pb, src32[2] >> 8); in pcm_bluray_encode_frame()
202 bytestream2_put_be24u(&pb, src32[4] >> 8); in pcm_bluray_encode_frame()
203 bytestream2_put_be24u(&pb, src32[5] >> 8); in pcm_bluray_encode_frame()
204 bytestream2_put_be24u(&pb, src32[ in pcm_bluray_encode_frame()
[all...]
H A Dpcm-dvdenc.c123 const int32_t *src32; in pcm_dvd_encode_frame() local
133 src32 = (const int32_t *)frame->data[0]; in pcm_dvd_encode_frame()
147 bytestream2_put_be16(&pb, src32[0] >> 16); in pcm_dvd_encode_frame()
148 bytestream2_put_be16(&pb, src32[1] >> 16); in pcm_dvd_encode_frame()
149 bytestream2_put_byte(&pb, (uint8_t)((*src32++) >> 8)); in pcm_dvd_encode_frame()
150 bytestream2_put_byte(&pb, (uint8_t)((*src32++) >> 8)); in pcm_dvd_encode_frame()
156 bytestream2_put_be16(&pb, src32[0] >> 16); in pcm_dvd_encode_frame()
157 bytestream2_put_be16(&pb, src32[1] >> 16); in pcm_dvd_encode_frame()
158 bytestream2_put_be16(&pb, src32[2] >> 16); in pcm_dvd_encode_frame()
159 bytestream2_put_be16(&pb, src32[ in pcm_dvd_encode_frame()
[all...]
/third_party/elfutils/libelf/
H A Dgnuhash_xlate.h42 const Elf32_Word *src32 = src; in elf_cvt_gnuhash() local
49 dest32[cnt] = bswap_32 (src32[cnt]); in elf_cvt_gnuhash()
53 Elf32_Word bitmask_words = encode ? src32[2] : dest32[2]; in elf_cvt_gnuhash()
57 const Elf64_Xword *src64 = (const Elf64_Xword *) &src32[4]; in elf_cvt_gnuhash()
67 src32 = (const Elf32_Word *) &src64[bitmask_words]; in elf_cvt_gnuhash()
71 *dest32++ = bswap_32 (*src32++); in elf_cvt_gnuhash()
/third_party/skia/src/core/
H A DSkConvertPixels.cpp129 auto src32 = (const uint32_t*) src; in convert_to_alpha8() local
132 dst[x] = src32[x] >> 24; in convert_to_alpha8()
135 src32 = SkTAddOffset<const uint32_t>(src32, srcRB); in convert_to_alpha8()
142 auto src32 = (const uint32_t*) src; in convert_to_alpha8() local
145 dst[x] = (src32[x] >> 30) * 0x55; in convert_to_alpha8()
148 src32 = SkTAddOffset<const uint32_t>(src32, srcRB); in convert_to_alpha8()
/third_party/ffmpeg/libavfilter/
H A Dvf_geq.c125 const float *src32 = (const float*)src; in getpix() local
128 return (1-y)*((1-x)*src32[xi + yi * linesize] + x*src32[xi + 1 + yi * linesize]) in getpix()
129 + y *((1-x)*src32[xi + (yi+1) * linesize] + x*src32[xi + 1 + (yi+1) * linesize]); in getpix()
144 const float *src32 = (const float*)src; in getpix() local
147 return src32[xi + yi * linesize]; in getpix()
188 const float *src32 = (const float*)src; in calculate_sums() local
192 linesum += src32[xi + yi * linesize]; in calculate_sums()
H A Dvf_hqx.c401 const uint32_t *src32 = (const uint32_t *)src; in hqx_filter() local
410 src32[prevcol + prevline], src32[prevline], src32[prevline + nextcol], in hqx_filter()
411 src32[prevcol ], src32[ 0], src32[ nextcol], in hqx_filter()
412 src32[prevcol + nextline], src32[nextline], src32[nextlin in hqx_filter()
[all...]
H A Dvf_dblur.c218 const float *src32 = (const float *)in->data[plane]; in filter_frame() local
251 memcpy(bptr, src32, width * sizeof(float)); in filter_frame()
254 src32 += in->linesize[plane] / 4; in filter_frame()
/third_party/icu/icu4c/source/test/cintltst/
H A Dcustrtrn.c69 static const UChar32 src32[]={ variable
154 if(err != U_BUFFER_OVERFLOW_ERROR || u32DestLen != UPRV_LENGTHOF(src32)) { in Test_strToUTF32()
157 (long)u32DestLen, (long)UPRV_LENGTHOF(src32), u_errorName(err)); in Test_strToUTF32()
162 u_strToUTF32(u32Target, UPRV_LENGTHOF(src32)+1, &u32DestLen, src16, UPRV_LENGTHOF(src16),&err); in Test_strToUTF32()
163 if(err != U_ZERO_ERROR || u32DestLen != UPRV_LENGTHOF(src32)) { in Test_strToUTF32()
166 (long)u32DestLen, (long)UPRV_LENGTHOF(src32), u_errorName(err)); in Test_strToUTF32()
175 for(i=0; i< UPRV_LENGTHOF(src32); i++){ in Test_strToUTF32()
176 if(u32Target[i] != src32[i]){ in Test_strToUTF32()
177 log_verbose("u_strToUTF32(with length) failed expected: %04X got: %04X at index: %i \n", src32[i], u32Target[i],i); in Test_strToUTF32()
187 if(err != U_BUFFER_OVERFLOW_ERROR || u32DestLen != UPRV_LENGTHOF(src32) in Test_strToUTF32()
[all...]
/third_party/skia/tools/
H A DToolUtils.cpp413 const uint32_t* src32 = (const uint32_t*)src.getPixels(); in copy_to_g8() local
422 uint32_t s = src32[x]; in copy_to_g8()
428 uint32_t s = src32[x]; in copy_to_g8()
432 src32 = (const uint32_t*)((const char*)src32 + src.rowBytes()); in copy_to_g8()
/third_party/mesa3d/src/mesa/main/
H A Dpack.c1402 int32_t src32; in convert_integer_luminance64() local
1408 src32 = clamp_sint64_to_sint32(src64); in convert_integer_luminance64()
1410 src32 = clamp_sint64_to_uint32(src64); in convert_integer_luminance64()
1412 src32 = clamp_uint64_to_sint32(src64); in convert_integer_luminance64()
1414 src32 = clamp_uint64_to_uint32(src64); in convert_integer_luminance64()
1418 return src32; in convert_integer_luminance64()
1421 return _mesa_signed_to_signed(src32, bits); in convert_integer_luminance64()
1423 return _mesa_unsigned_to_unsigned(src32, bits); in convert_integer_luminance64()
/third_party/skia/src/codec/
H A DSkSwizzler.cpp767 auto src32 = (const uint32_t*)(src+offset); in SkipLeading8888ZerosThen() local
772 while (dstWidth > 0 && *src32 == 0x00000000) { in SkipLeading8888ZerosThen()
775 src32 += deltaSrc/4; in SkipLeading8888ZerosThen()
777 proc(dst32, (const uint8_t*)src32, dstWidth, bpp, deltaSrc, 0, ctable); in SkipLeading8888ZerosThen()
/third_party/ffmpeg/libavutil/
H A Dpixdesc.c110 const uint32_t *src32 = src; in av_write_image_line2() local
119 *p |= (src_element_size == 4 ? *src32++ : *src16++) << shift; in av_write_image_line2()
132 *p |= ((src_element_size == 4 ? *src32++ : *src16++) << shift); in av_write_image_line2()
137 unsigned s = (src_element_size == 4 ? *src32++ : *src16++); in av_write_image_line2()
/third_party/vk-gl-cts/framework/common/
H A DtcuCompressedTexture.cpp1258 const deUint32 src32 = src; in bgr16torgba32() local
1259 const deUint8 b5 = (src32 & 0x1f); in bgr16torgba32()
1260 const deUint8 g6 = (src32 >> 5) & 0x3f; in bgr16torgba32()
1261 const deUint8 r5 = (src32 >> 11) & 0x1f; in bgr16torgba32()
/third_party/mesa3d/src/intel/compiler/
H A Dbrw_fs_nir.cpp6152 fs_reg src32 = bld.vgrf(BRW_REGISTER_TYPE_UD);
6153 bld.MOV(src32, retype(src, BRW_REGISTER_TYPE_UW));
6154 return src32;

Completed in 28 milliseconds