/third_party/ffmpeg/libavcodec/ |
D | aptxdec.c | 89 static void aptx_unpack_codeword(Channel *channel, uint16_t codeword) in aptx_unpack_codeword() argument 91 channel->quantize[0].quantized_sample = sign_extend(codeword >> 0, 7); in aptx_unpack_codeword() 92 channel->quantize[1].quantized_sample = sign_extend(codeword >> 7, 4); in aptx_unpack_codeword() 93 channel->quantize[2].quantized_sample = sign_extend(codeword >> 11, 2); in aptx_unpack_codeword() 94 channel->quantize[3].quantized_sample = sign_extend(codeword >> 13, 3); in aptx_unpack_codeword() 99 static void aptxhd_unpack_codeword(Channel *channel, uint32_t codeword) in aptxhd_unpack_codeword() argument 101 channel->quantize[0].quantized_sample = sign_extend(codeword >> 0, 9); in aptxhd_unpack_codeword() 102 channel->quantize[1].quantized_sample = sign_extend(codeword >> 9, 6); in aptxhd_unpack_codeword() 103 channel->quantize[2].quantized_sample = sign_extend(codeword >> 15, 4); in aptxhd_unpack_codeword() 104 channel->quantize[3].quantized_sample = sign_extend(codeword >> 19, 5); in aptxhd_unpack_codeword()
|
/third_party/ffmpeg/libavfilter/ |
D | vf_elbg.c | 41 int *codeword; member 119 elbg->codeword = av_realloc_f(elbg->codeword, elbg->codeword_length, in config_input() 120 NB_COMPONENTS * sizeof(*elbg->codeword)); in config_input() 121 if (!elbg->codeword) in config_input() 160 elbg->codeword[k++] = p[r_idx]; in filter_frame() 161 elbg->codeword[k++] = p[g_idx]; in filter_frame() 162 elbg->codeword[k++] = p[b_idx]; in filter_frame() 169 avpriv_init_elbg(elbg->codeword, NB_COMPONENTS, elbg->codeword_length, in filter_frame() 172 avpriv_do_elbg(elbg->codeword, NB_COMPONENTS, elbg->codeword_length, in filter_frame() 233 av_freep(&elbg->codeword); in uninit()
|
/third_party/skia/third_party/externals/swiftshader/src/Device/ |
D | ETC_Decoder.cpp | 618 int codeword = isSigned ? signed_base_codeword : base_codeword; in getSingleChannel() local 619 … == 0) ? (codeword * 8 + 4 + getSingleChannelModifier(x, y)) : (codeword * 8 + 4 + getSingleChanne… in getSingleChannel()
|
/third_party/skia/third_party/externals/swiftshader/src/Renderer/ |
D | ETC_Decoder.cpp | 621 int codeword = isSigned ? signed_base_codeword : base_codeword; in getSingleChannel() local 624 (codeword * 8 + 4 + getSingleChannelModifier(x, y)) : in getSingleChannel() 625 (codeword * 8 + 4 + getSingleChannelModifier(x, y) * multiplier * 8)) : in getSingleChannel() 626 codeword + getSingleChannelModifier(x, y) * multiplier; in getSingleChannel()
|
/third_party/openGLES/extensions/OES/ |
D | OES_compressed_ETC1_RGB8_texture.txt | 213 chosen using the table codewords: For subblock 1, table codeword 1 214 is used (bits 39-37), and for subblock 2, table codeword 2 is used 215 (bits 36-34), see Table 3.17.1. The table codeword is used to 297 table codeword modifier table
|
/third_party/skia/third_party/externals/opengl-registry/extensions/OES/ |
D | OES_compressed_ETC1_RGB8_texture.txt | 203 chosen using the table codewords: For subblock 1, table codeword 1 204 is used (bits 39-37), and for subblock 2, table codeword 2 is used 205 (bits 36-34), see Table 3.17.1. The table codeword is used to 287 table codeword modifier table
|
/third_party/flutter/skia/third_party/externals/angle2/src/image_util/ |
D | loadimage_etc.cpp | 1339 int codeword = isSigned ? u.scblk.base_codeword.s : u.scblk.base_codeword.us; in getSingleEACChannel() local 1341 return codeword * 8 + 4 + getSingleChannelModifier(x, y) * multiplier; in getSingleEACChannel() 1346 int codeword = isSigned ? u.scblk.base_codeword.s : u.scblk.base_codeword.us; in getSingleETC2Channel() local 1347 return codeword + getSingleChannelModifier(x, y) * u.scblk.multiplier; in getSingleETC2Channel()
|
/third_party/skia/third_party/externals/angle2/src/image_util/ |
D | loadimage_etc.cpp | 1339 int codeword = isSigned ? u.scblk.base_codeword.s : u.scblk.base_codeword.us; in getSingleEACChannel() local 1341 return codeword * 8 + 4 + getSingleChannelModifier(x, y) * multiplier; in getSingleEACChannel() 1346 int codeword = isSigned ? u.scblk.base_codeword.s : u.scblk.base_codeword.us; in getSingleETC2Channel() local 1347 return codeword + getSingleChannelModifier(x, y) * u.scblk.multiplier; in getSingleETC2Channel()
|
/third_party/pulseaudio/src/modules/rtp/ |
D | rfc3551.txt | 991 octets as follows: the first codeword is placed into the first octet 992 such that the least significant bit of the codeword aligns with the 993 least significant bit in the octet, the second codeword is then 995 significant unoccupied bit in the octet. When a complete codeword 1003 A3 is the least significant bit of the first codeword: 1024 A2 is the least significant bit of the first codeword: 1599 DVI4 codeword VDVI bit pattern
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/ |
D | SystemZInstrInfo.td | 2108 // Compare and form codeword.
|