/frameworks/av/media/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 | 85 uint32 tmpvar, vol_shape; in DecodeVOLHeader() 86 uint32 startCode; in DecodeVOLHeader() 90 uint32 profile = 0x01; in DecodeVOLHeader() 106 tmpvar = (uint32) BitstreamReadBits16(stream, 8); /* profile */ in DecodeVOLHeader() 199 tmpvar = (uint32) BitstreamRead1Bits(stream); in DecodeVOLHeader() 203 tmpvar = (uint32) BitstreamReadBits16(stream, 4); in DecodeVOLHeader() 205 tmpvar = (uint32) BitstreamReadBits16(stream, 3); in DecodeVOLHeader() 212 tmpvar = (uint32) BitstreamRead1Bits(stream); in DecodeVOLHeader() 216 tmpvar = (uint32) BitstreamReadBits16(stream, 3); in DecodeVOLHeader() 218 tmpvar = (uint32) BitstreamRead1Bits(stream); in DecodeVOLHeader() [all …]
|
D | idct_vca.cpp | 46 uint32 pred_word, dst_word; in idctrow1() 60 pred_word = *((uint32*)(pred += 12)); /* read 4 bytes from pred */ in idctrow1() 72 *((uint32*)(dst += width)) = dst_word; /* save 4 bytes to dst */ in idctrow1() 74 pred_word = *((uint32*)(pred += 4)); /* read 4 bytes from pred */ in idctrow1() 86 *((uint32*)(dst += 4)) = dst_word; /* save 4 bytes to dst */ in idctrow1() 103 uint32 pred_word, dst_word; in idctrow2() 129 pred_word = *((uint32*)(pred += 12)); /* read 4 bytes from pred */ in idctrow2() 141 *((uint32*)(dst += width)) = dst_word; /* save 4 bytes to dst */ in idctrow2() 143 pred_word = *((uint32*)(pred += 4)); /* read 4 bytes from pred */ in idctrow2() 155 *((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];
|
/frameworks/av/media/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() 116 uint32 bytesToFetch; in getNbits() 121 uint32 returnValue = 0; in getNbits() 151 returnValue = (((uint32)(Elem)) << 24) | in getNbits() 152 (((uint32)(Elem1)) << 16) | in getNbits() 153 (((uint32)(Elem2)) << 8) | in getNbits() 154 ((uint32)(Elem3)); in getNbits() 175 uint32 offset; 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_getbits.h | 87 uint32 getNbits(tmp3Bits *pMainData, 93 uint32 getUpTo17bits(tmp3Bits *pMainData, 107 static inline bool bitsAvailable(tmp3Bits *inputStream, uint32 neededBits) in bitsAvailable()
|
/frameworks/base/core/proto/android/content/ |
D | configuration.proto | 33 optional uint32 mcc = 2; 34 optional uint32 mnc = 3 [ (.android.privacy).dest = DEST_EXPLICIT ]; 36 optional uint32 screen_layout = 5; 37 optional uint32 color_mode = 6; 38 optional uint32 touchscreen = 7; 39 optional uint32 keyboard = 8; 40 optional uint32 keyboard_hidden = 9; 41 optional uint32 hard_keyboard_hidden = 10; 42 optional uint32 navigation = 11; 43 optional uint32 navigation_hidden = 12; [all …]
|
/frameworks/av/media/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 | 340 uint32 pred_word, dst_word; in idct_row1Inter() 352 pred_word = *((uint32*)(rec += lx)); /* read 4 bytes from pred */ in idct_row1Inter() 364 *((uint32*)rec) = dst_word; /* save 4 bytes to dst */ in idct_row1Inter() 366 pred_word = *((uint32*)(rec + 4)); /* read 4 bytes from pred */ in idct_row1Inter() 378 *((uint32*)(rec + 4)) = dst_word; /* save 4 bytes to dst */ in idct_row1Inter() 389 uint32 pred_word, dst_word; in idct_row2Inter() 413 pred_word = *((uint32*)(rec += lx)); /* read 4 bytes from pred */ in idct_row2Inter() 425 *((uint32*)rec) = dst_word; /* save 4 bytes to dst */ in idct_row2Inter() 427 pred_word = *((uint32*)(rec + 4)); /* read 4 bytes from pred */ in idct_row2Inter() 439 *((uint32*)(rec + 4)) = dst_word; /* save 4 bytes to dst */ in idct_row2Inter() [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/av/media/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/services/surfaceflinger/layerproto/ |
D | transactions.proto | 55 uint32 flags = 3; 139 uint32 w = 6; 140 uint32 h = 7; 141 uint32 layer_stack = 8; 152 uint32 flags = 9; 153 uint32 mask = 10; 163 uint32 background_blur_radius = 13; 175 uint32 transform = 19; 181 uint32 width = 2; 182 uint32 height = 3; [all …]
|
/frameworks/native/cmds/surfacereplayer/proto/src/ |
D | trace.proto | 65 required uint32 w = 1; 66 required uint32 h = 2; 82 required uint32 layer = 1; 101 required uint32 layer_stack = 1; 105 required uint32 flags = 1; 153 required uint32 w = 3; 154 required uint32 h = 4; 163 required uint32 w = 2; 164 required uint32 h = 3; 210 required uint32 blur_radius = 1;
|
/frameworks/base/core/proto/android/view/ |
D | windowlayoutparams.proto | 57 …optional uint32 input_feature_flags = 19 [(.android.typedef) = "android.view.WindowManager.LayoutP… 61 … optional uint32 flags = 24 [(.android.typedef) = "android.view.WindowManager.LayoutParams.Flags"]; 62 …optional uint32 private_flags = 26 [(.android.typedef) = "android.view.WindowManager.LayoutParams.… 63 …optional uint32 system_ui_visibility_flags = 27 [(.android.typedef) = "android.view.WindowManager.… 64 …optional uint32 subtree_system_ui_visibility_flags = 28 [(.android.typedef) = "android.view.Window… 65 …optional uint32 appearance = 29 [(.android.typedef) = "android.view.WindowInsetsController.Appeara… 66 …optional uint32 behavior = 30 [(.android.typedef) = "android.view.WindowInsetsController.Behavior"… 67 …optional uint32 fit_insets_types = 31 [(.android.typedef) = "android.view.WindowInsets.Type.Insets… 68 …optional uint32 fit_insets_sides = 32 [(.android.typedef) = "android.view.WindowInsets.Side.Insets…
|
/frameworks/av/media/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);
|
/frameworks/base/tools/aapt2/ |
D | Configuration.proto | 128 uint32 mcc = 1; 131 uint32 mnc = 2; 140 uint32 screen_width = 5; 143 uint32 screen_height = 6; 146 uint32 screen_width_dp = 7; 149 uint32 screen_height_dp = 8; 152 uint32 smallest_screen_width_dp = 9; 179 uint32 density = 18; 199 uint32 sdk_version = 24;
|