/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];
|
/frameworks/ml/nn/common/random/ |
D | philox_random.h | 45 typedef uint32_t uint32; typedef 107 using ResultType = Array<uint32, 4>; 108 using ResultElementType = uint32; 115 using Key = Array<uint32, 2>; 122 key_[0] = static_cast<uint32>(seed); in PhiloxRandom() 123 key_[1] = static_cast<uint32>(seed >> 32); in PhiloxRandom() 128 key_[0] = static_cast<uint32>(seed_lo); in PhiloxRandom() 129 key_[1] = static_cast<uint32>(seed_lo >> 32); in PhiloxRandom() 130 counter_[2] = static_cast<uint32>(seed_hi); in PhiloxRandom() 131 counter_[3] = static_cast<uint32>(seed_hi >> 32); in PhiloxRandom() [all …]
|
D | random_distributions.h | 41 PHILOX_DEVICE_INLINE float Uint32ToFloat(uint32 x); 43 PHILOX_DEVICE_INLINE double Uint64ToDouble(uint32 x0, uint32 x1); 183 : lo_(lo), range_(static_cast<uint32>(hi) - static_cast<uint32>(lo)) {} in UniformDistribution() 200 uint32 range_; 316 void BoxMullerFloat(uint32 x0, uint32 x1, float* f0, float* f1); 319 void BoxMullerDouble(uint32 x0, uint32 x1, uint32 x2, uint32 x3, double* d0, double* d1); 471 const uint32 x0 = (*gen)(); in operator() 472 const uint32 x1 = (*gen)(); in operator() 512 const uint32 x0 = (*gen)(); in operator() 513 const uint32 x1 = (*gen)(); in operator() [all …]
|
D | simple_philox.h | 36 PHILOX_DEVICE_INLINE uint32 Rand32() { return single_(); } in Rand32() 40 const uint32 lo = single_(), hi = single_(); in Rand64() 49 const uint32 x0 = single_(), x1 = single_(); in RandDouble() 56 uint32 Skewed(int max_log);
|
/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;
|
/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/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/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/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; 71 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);
|
/frameworks/base/tools/aapt2/ |
D | Configuration.proto | 129 uint32 mcc = 1; 132 uint32 mnc = 2; 141 uint32 screen_width = 5; 144 uint32 screen_height = 6; 147 uint32 screen_width_dp = 7; 150 uint32 screen_height_dp = 8; 153 uint32 smallest_screen_width_dp = 9; 180 uint32 density = 18; 200 uint32 sdk_version = 24;
|