/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/ |
D | get_pred_outside.cpp | 116 *((uint32*)ptr) = temp; \ 117 *((uint32*)(ptr+4)) = temp; \ 118 *((uint32*)(ptr+=16)) = temp; \ 119 *((uint32*)(ptr+4)) = temp; \ 120 *((uint32*)(ptr+=16)) = temp; \ 121 *((uint32*)(ptr+4)) = temp; \ 122 *((uint32*)(ptr+=16)) = temp; \ 123 *((uint32*)(ptr+4)) = temp; \ 124 *((uint32*)(ptr+=16)) = temp; \ 125 *((uint32*)(ptr+4)) = temp; \ [all …]
|
D | get_pred_adv_b_add.cpp | 91 uint32 pred_word, word1, word2; in GetPredAdvancedBy0x0() 106 *((uint32*)(pred_block += offset2)) = *((uint32*)prev); in GetPredAdvancedBy0x0() 107 *((uint32*)(pred_block += 4)) = *((uint32*)(prev + 4)); in GetPredAdvancedBy0x0() 118 word1 = *((uint32*)prev); /* read 4 bytes, b4 b3 b2 b1 */ in GetPredAdvancedBy0x0() 119 word2 = *((uint32*)(prev += 4)); /* read 4 bytes, b8 b7 b6 b5 */ in GetPredAdvancedBy0x0() 122 *((uint32*)(pred_block += offset2)) = pred_word; in GetPredAdvancedBy0x0() 124 word1 = *((uint32*)(prev += 4)); /* b12 b11 b10 b9 */ in GetPredAdvancedBy0x0() 127 *((uint32*)(pred_block += 4)) = pred_word; in GetPredAdvancedBy0x0() 140 word1 = *((uint32*)prev); /* read 4 bytes, b4 b3 b2 b1 */ in GetPredAdvancedBy0x0() 141 word2 = *((uint32*)(prev += 4)); /* read 4 bytes, b8 b7 b6 b5 */ in GetPredAdvancedBy0x0() [all …]
|
D | mp4def.h | 156 #define ZERO_OUT_64BYTES(x) { *((uint32*)(x)) = *(((uint32*)(x))+1) = \ 157 *(((uint32*)(x))+2) = *(((uint32*)(x))+3) = \ 158 *(((uint32*)(x))+4) = *(((uint32*)(x))+5) = \ 159 *(((uint32*)(x))+6) = *(((uint32*)(x))+7) = \ 160 *(((uint32*)(x))+8) = *(((uint32*)(x))+9) = \ 161 *(((uint32*)(x))+10) = *(((uint32*)(x))+11) = \ 162 *(((uint32*)(x))+12) = *(((uint32*)(x))+13) = \ 163 *(((uint32*)(x))+14) = *(((uint32*)(x))+15) = 0; }
|
D | block_idct.cpp | 327 *((uint32*)dst) = *((uint32*)pred); in Copy_Blk_to_Vop() 328 *((uint32*)(dst += 4)) = *((uint32*)(pred += 4)); in Copy_Blk_to_Vop() 329 *((uint32*)(dst += width)) = *((uint32*)(pred += 12)); in Copy_Blk_to_Vop() 330 *((uint32*)(dst += 4)) = *((uint32*)(pred += 4)); in Copy_Blk_to_Vop() 331 *((uint32*)(dst += width)) = *((uint32*)(pred += 12)); in Copy_Blk_to_Vop() 332 *((uint32*)(dst += 4)) = *((uint32*)(pred += 4)); in Copy_Blk_to_Vop() 333 *((uint32*)(dst += width)) = *((uint32*)(pred += 12)); in Copy_Blk_to_Vop() 334 *((uint32*)(dst += 4)) = *((uint32*)(pred += 4)); in Copy_Blk_to_Vop() 335 *((uint32*)(dst += width)) = *((uint32*)(pred += 12)); in Copy_Blk_to_Vop() 336 *((uint32*)(dst += 4)) = *((uint32*)(pred += 4)); in Copy_Blk_to_Vop() [all …]
|
D | vop.cpp | 87 uint32 tmpvar, vol_shape; in DecodeVOLHeader() 88 uint32 startCode; in DecodeVOLHeader() 94 uint32 profile = 0x01; in DecodeVOLHeader() 110 tmpvar = (uint32) BitstreamReadBits16(stream, 8); /* profile */ in DecodeVOLHeader() 172 tmpvar = (uint32) BitstreamRead1Bits(stream); in DecodeVOLHeader() 176 tmpvar = (uint32) BitstreamReadBits16(stream, 4); in DecodeVOLHeader() 178 tmpvar = (uint32) BitstreamReadBits16(stream, 3); in DecodeVOLHeader() 185 tmpvar = (uint32) BitstreamRead1Bits(stream); in DecodeVOLHeader() 189 tmpvar = (uint32) BitstreamReadBits16(stream, 3); in DecodeVOLHeader() 191 tmpvar = (uint32) BitstreamRead1Bits(stream); in DecodeVOLHeader() [all …]
|
D | idct_vca.cpp | 45 uint32 pred_word, dst_word; in idctrow1() 59 pred_word = *((uint32*)(pred += 12)); /* read 4 bytes from pred */ in idctrow1() 71 *((uint32*)(dst += width)) = dst_word; /* save 4 bytes to dst */ in idctrow1() 73 pred_word = *((uint32*)(pred += 4)); /* read 4 bytes from pred */ in idctrow1() 85 *((uint32*)(dst += 4)) = dst_word; /* save 4 bytes to dst */ in idctrow1() 101 uint32 pred_word, dst_word; in idctrow2() 127 pred_word = *((uint32*)(pred += 12)); /* read 4 bytes from pred */ in idctrow2() 139 *((uint32*)(dst += width)) = dst_word; /* save 4 bytes to dst */ in idctrow2() 141 pred_word = *((uint32*)(pred += 4)); /* read 4 bytes from pred */ in idctrow2() 153 *((uint32*)(dst += 4)) = dst_word; /* save 4 bytes to dst */ in idctrow2() [all …]
|
D | mp4lib_int.h | 36 uint32 curr_word; 37 uint32 next_word; 42 uint32 bitcnt; /* total bit read so-far (from inbfr)*/ 62 uint32 timeStamp; /* Vop TimeStamp in msec */ 88 uint32 moduloTimeBase; /* internal decoder clock */ 252 uint32 currTimestamp; 262 uint32 prevTimestamp[BITRATE_AVERAGE_WINDOW];
|
D | bitstream.h | 39 PV_STATUS BitstreamShowBits32(BitstreamDecVideo *stream, int nbits, uint32 *code); 40 uint32 BitstreamReadBits32(BitstreamDecVideo *stream, int nbits); 135 uint32 BitstreamReadBits32HC(BitstreamDecVideo *stream); 136 PV_STATUS BitstreamShowBits32HC(BitstreamDecVideo *stream, uint32 *code); 142 PV_STATUS PV_BitstreamShowBitsByteAlign(BitstreamDecVideo *stream, int nbits, uint32 *code); 144 …S PV_BitstreamShowBitsByteAlignNoForceStuffing(BitstreamDecVideo *stream, int nbits, uint32 *code);
|
/frameworks/av/media/libstagefright/codecs/mp3dec/src/ |
D | pvmp3_dec_defs.h | 140 uint32 part2_3_length; 141 uint32 big_values; 143 uint32 scalefac_compress; 144 uint32 window_switching_flag; 145 uint32 block_type; 146 uint32 mixed_block_flag; 147 uint32 table_select[3]; 148 uint32 subblock_gain[3]; 149 uint32 region0_count; 150 uint32 region1_count; [all …]
|
D | pvmp3_getbits.cpp | 110 uint32 getNbits(tmp3Bits *ptBitStream, in getNbits() 114 uint32 offset; in getNbits() 115 uint32 bitIndex; in getNbits() 120 uint32 returnValue = 0; in getNbits() 135 returnValue = (((uint32)(Elem)) << 24) | in getNbits() 136 (((uint32)(Elem1)) << 16) | in getNbits() 137 (((uint32)(Elem2)) << 8) | in getNbits() 138 ((uint32)(Elem3)); in getNbits() 162 uint32 offset; in getUpTo9bits() 163 uint32 bitIndex; in getUpTo9bits() [all …]
|
D | pvmp3_crc.cpp | 123 uint32 getbits_crc(tmp3Bits *inputStream, /* bit stream structure */ in getbits_crc() 125 uint32 *crc, in getbits_crc() 126 uint32 crc_enabled) in getbits_crc() 128 uint32 bits = getNbits(inputStream, neededBits); in getbits_crc() 141 void calculate_crc(uint32 data, in calculate_crc() 142 uint32 length, in calculate_crc() 143 uint32 *crc) in calculate_crc() 145 uint32 carry; in calculate_crc() 146 uint32 masking = 1 << length; in calculate_crc()
|
D | pvmp3_crc.h | 84 uint32 getbits_crc(tmp3Bits *inputStream, 86 uint32 *crc, 87 uint32 crc_enabled); 90 void calculate_crc(uint32 data, 91 uint32 length, 92 uint32 *crc);
|
D | pvmp3_decode_huff_cw.cpp | 152 uint32 tmp; in pvmp3_decode_huff_cw_tab1() 169 uint32 tmp; in pvmp3_decode_huff_cw_tab2() 195 uint32 tmp; in pvmp3_decode_huff_cw_tab3() 221 uint32 tmp; in pvmp3_decode_huff_cw_tab5() 250 uint32 tmp; in pvmp3_decode_huff_cw_tab6() 279 uint32 tmp; in pvmp3_decode_huff_cw_tab7() 312 uint32 tmp; in pvmp3_decode_huff_cw_tab8() 345 uint32 tmp; in pvmp3_decode_huff_cw_tab9() 378 uint32 tmp; in pvmp3_decode_huff_cw_tab10() 423 uint32 tmp; in pvmp3_decode_huff_cw_tab11() [all …]
|
D | s_mp3bits.h | 92 uint32 usedBits; 93 uint32 inputBufferCurrentLength; 94 uint32 offset;
|
D | pvmp3_mpeg2_get_scale_factors.cpp | 123 uint32 *scalefac_IIP_buffer, in pvmp3_mpeg2_get_scale_factors() 130 uint32 *scalefac_buffer = &scalefac_IIP_buffer[56]; in pvmp3_mpeg2_get_scale_factors() 138 (uint32 *)scalefac_buffer, in pvmp3_mpeg2_get_scale_factors() 139 (uint32 *)scalefac_IIP_buffer, in pvmp3_mpeg2_get_scale_factors()
|
D | pvmp3_huffman_parsing.cpp | 137 uint32 grBits; in pvmp3_huffman_parsing() 183 if ((grInfo->big_values << 1) > (uint32)region2Start) in pvmp3_huffman_parsing() 225 for (; (uint32)i < (grInfo->big_values << 1); i += 2) in pvmp3_huffman_parsing() 230 else if ((grInfo->big_values << 1) > (uint32)region1Start) in pvmp3_huffman_parsing() 255 for (; (uint32)i < (grInfo->big_values << 1); i += 2) in pvmp3_huffman_parsing() 272 for (i = 0; (uint32)i < (grInfo->big_values << 1); i += 2) in pvmp3_huffman_parsing()
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/ |
D | sad_mb_offset.h | 53 x10 = *((uint32*)(ref += lx)); /* D C B A */ in sad_mb_offset3() 54 x11 = *((uint32*)(ref + 4)); /* H G F E */ in sad_mb_offset3() 55 x12 = *((uint32*)(ref + 8)); /* L K J I */ in sad_mb_offset3() 57 x10 = ((uint32)x10 >> SHIFT); /* 0 0 0 D */ in sad_mb_offset3() 59 x11 = ((uint32)x11 >> SHIFT); /* 0 0 0 H */ in sad_mb_offset3() 62 x12 = *((uint32*)(blk += 16)); in sad_mb_offset3() 63 x14 = *((uint32*)(blk + 4)); in sad_mb_offset3() 73 x4 = x4 + ((uint32)x10 >> 8); /* accumulate high bytes */ in sad_mb_offset3() 76 x4 = x4 + ((uint32)x11 >> 8); /* accumulate high bytes */ in sad_mb_offset3() 79 x10 = *((uint32*)(ref + 8)); /* D C B A */ in sad_mb_offset3() [all …]
|
D | sad_inline.h | 47 if ((uint32)src2 >= (uint32)src1) in sad_4pixel() 56 x7 = mask & ((uint32)x7 >> 1); in sad_4pixel() 108 x10 = *((uint32*)(ref += lx)); in simd_sad_mb() 109 x11 = *((uint32*)(ref + 4)); in simd_sad_mb() 110 x12 = *((uint32*)(blk += 16)); in simd_sad_mb() 111 x14 = *((uint32*)(blk + 4)); in simd_sad_mb() 121 x4 = x4 + ((uint32)x10 >> 8); /* accumulate high bytes */ in simd_sad_mb() 124 x4 = x4 + ((uint32)x11 >> 8); /* accumulate high bytes */ in simd_sad_mb() 127 x10 = *((uint32*)(ref + 8)); in simd_sad_mb() 128 x11 = *((uint32*)(ref + 12)); in simd_sad_mb() [all …]
|
D | fastidct.cpp | 328 uint32 pred_word, dst_word; in idct_row1Inter() 340 pred_word = *((uint32*)(rec += lx)); /* read 4 bytes from pred */ in idct_row1Inter() 352 *((uint32*)rec) = dst_word; /* save 4 bytes to dst */ in idct_row1Inter() 354 pred_word = *((uint32*)(rec + 4)); /* read 4 bytes from pred */ in idct_row1Inter() 366 *((uint32*)(rec + 4)) = dst_word; /* save 4 bytes to dst */ in idct_row1Inter() 375 uint32 pred_word, dst_word; in idct_row2Inter() 399 pred_word = *((uint32*)(rec += lx)); /* read 4 bytes from pred */ in idct_row2Inter() 411 *((uint32*)rec) = dst_word; /* save 4 bytes to dst */ in idct_row2Inter() 413 pred_word = *((uint32*)(rec + 4)); /* read 4 bytes from pred */ in idct_row2Inter() 425 *((uint32*)(rec + 4)) = dst_word; /* save 4 bytes to dst */ in idct_row2Inter() [all …]
|
/frameworks/base/core/proto/android/content/ |
D | configuration.proto | 31 uint32 mcc = 2; 32 uint32 mnc = 3; 34 uint32 screen_layout = 5; 35 uint32 touchscreen = 6; 36 uint32 keyboard_hidden = 7; 37 uint32 hard_keyboard_hidden = 8; 38 uint32 navigation = 9; 39 uint32 navigation_hidden = 10; 40 uint32 orientation = 11; 41 uint32 ui_mode = 12; [all …]
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/ |
D | pixelutils.cpp | 21 typedef uint32_t uint32; typedef 26 uint32* pInPix = static_cast<uint32*>(env->GetDirectBufferAddress(input)); in JNI_PIXELUTILS_METHOD() 27 uint32* pOutput = static_cast<uint32*>(env->GetDirectBufferAddress(output)); in JNI_PIXELUTILS_METHOD() 28 uint32* pOutRow = pOutput + offset; in JNI_PIXELUTILS_METHOD() 30 uint32* pOutPix = pOutRow; in JNI_PIXELUTILS_METHOD()
|
/frameworks/base/tools/aapt2/ |
D | Format.proto | 35 optional uint32 line_no = 2; 52 optional uint32 package_id = 1; 58 optional uint32 id = 1; 76 optional uint32 id = 1; 88 optional uint32 path_idx = 1; 89 optional uint32 line_no = 2; 90 optional uint32 col_no = 3; 99 optional uint32 id = 2; 100 optional uint32 symbol_idx = 3; 108 optional uint32 idx = 1; [all …]
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/include/ |
D | cvei.h | 143 uint32 iEncodeID; 183 uint32 iNumIntraMBRefresh; 235 uint32 iPacketSize; 291 uint32 iTimeStamp; 310 uint32 iVideoTimeStamp; 313 uint32 iExternalTimeStamp; 325 (uint32 aId, uint32 aEvent, uint32 aParam1 = 0) = 0; 434 uint32 iId;
|
/frameworks/native/cmds/surfacereplayer/proto/src/ |
D | trace.proto | 58 required uint32 w = 1; 59 required uint32 h = 2; 67 required uint32 layer = 1; 94 required uint32 layer_stack = 1; 146 required uint32 w = 3; 147 required uint32 h = 4; 156 required uint32 w = 2; 157 required uint32 h = 3;
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/include/ |
D | mp4dec_api.h | 65 uint32 timeStamp; /* time stamp */ 109 uint32 timestamp; 155 Bool PVDecSetReference(VideoDecControls *decCtrl, uint8 *refYUV, uint32 timestamp); 156 Bool PVDecSetEnhReference(VideoDecControls *decCtrl, uint8 *refYUV, uint32 timestamp); 157 …ool PVDecodeVideoFrame(VideoDecControls *decCtrl, uint8 *bitstream[], uint32 *timestamp, int32 … 158 …Bool PVDecodeVopHeader(VideoDecControls *decCtrl, uint8 *buffer[], uint32 timestamp[], int32 bu… 164 uint32 PVGetVideoTimeStamp(VideoDecControls *decoderControl);
|