/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/gavdp/a2dp_codec/sbclib/src/ |
H A D | sbc_decoder.cpp | 125 for (int blk = 0; blk < frame.blocks_; blk++) { in Synthesize() local 126 Synthesize4(frame, channel, blk); in Synthesize() 132 for (int blk = 0; blk < frame.blocks_; blk++) { in Synthesize() local 133 Synthesize8(frame, channel, blk); in Synthesize() 154 void Decoder::Synthesize4(const Frame &frame, int ch, int blk) in Synthesize4() argument 166 v[offset[i]] = Scale4Staged1(MULA(SYNMATRIX4[i][INDEX_0], frame.samples_[blk][ch][INDEX_0], in Synthesize4() 167 MULA(SYNMATRIX4[i][INDEX_1], frame.samples_[blk][ch][INDEX_1], in Synthesize4() 168 MULA(SYNMATRIX4[i][INDEX_2], frame.samples_[blk][ch][INDEX_2], in Synthesize4() 169 MUL(SYNMATRIX4[i][INDEX_3], frame.samples_[blk][ch][INDEX_3]))))); in Synthesize4() 174 pcmSamples_[ch][blk * VALUE_4 + i] = Clip16(Scale4Staged1(MULA(v[offset[i] + INDEX_0], in Synthesize4() [all …]
|
H A D | sbc_encoder.cpp | 371 for (int blk = VALUE_0; blk < frame.blocks_; blk += increment) { in Analyze4Subbands() local 373 … frame.audioSamples_[blk + VALUE_1][ch] - frame.audioSamples_[blk][ch]); in Analyze4Subbands() 386 for (int blk = VALUE_0; blk < frame.blocks_; blk += increment) { in Analyze8Subbands() local 388 … frame.audioSamples_[blk + VALUE_1][ch] - frame.audioSamples_[blk][ch]); in Analyze8Subbands() 614 for (int blk = VALUE_0; blk < blocks; blk++) { in CalculateScalefactors() local 628 for (int blk = VALUE_0; blk < frame_.blocks_; blk++) { in CalculateScalefactorsJointInternal() local 651 for (int blk = VALUE_0; blk < frame_.blocks_; blk++) { in CalculateScalefactorsJointForTheRestSubband() local 669 for (int blk = VALUE_0; blk < frame_.blocks_; blk++) { in CalculateScalefactorsJointForTheRestSubband() local 686 for (int blk = VALUE_0; blk < frame_.blocks_; blk++) { in CalculateScalefactorsJointForTheRestSubband() local 687 frame_.audioSamples_[blk][VALUE_0][sb] = sbSampleJoint[blk][VALUE_0]; in CalculateScalefactorsJointForTheRestSubband() [all …]
|
H A D | sbc_frame.cpp | 419 for (uint8_t blk = 0; blk < frame.blocks_; blk++) { in UnpackFrameStream() local 423 frame.samples_[blk][channel][subband] = 0; in UnpackFrameStream() 440 frame.samples_[blk][channel][subband] = static_cast<int32_t> in UnpackFrameStream() 448 for (uint8_t blk = 0; blk < frame.blocks_; blk++) { in UnpackFrameStream() local 451 … uint32_t val = frame.samples_[blk][0][subband] + frame.samples_[blk][1][subband]; in UnpackFrameStream() 452 frame.samples_[blk][1][subband] = in UnpackFrameStream() 453 frame.samples_[blk][0][subband] - frame.samples_[blk][1][subband]; in UnpackFrameStream() 454 frame.samples_[blk][0][subband] = val; in UnpackFrameStream() 606 for (int blk = 0; blk < frame.blocks_; blk++) { in PackFrameInternal() local 613 … (sampleDelta[channel][subband] + frame.audioSamples_[blk][channel][subband])) >> MOVE_BIT32; in PackFrameInternal()
|
/ohos5.0/drivers/hdf_core/framework/model/display/driver/lcdkit/ |
H A D | lite_lcdkit.c | 65 if (panelCfg->info.blk.type == BLK_PWM) { in LcdkitInit() 207 duty = (level * panelCfg->info.pwm.period) / panelCfg->info.blk.maxLevel; in SetBacklightByPwm() 247 if (panelCfg->info.blk.type == BLK_PWM) { in LcdkitSetBkl() 249 } else if (panelCfg->info.blk.type == BLK_MIPI) { in LcdkitSetBkl() 252 HDF_LOGE("%s: not support backlight type:%d", __func__, panelCfg->info.blk.type); in LcdkitSetBkl()
|
H A D | lcdkit_parse_config.c | 141 PARSE_PANEL_SYMBOL(node, drsOps, "blkType", &info->blk.type); in ParsePanelInfo() 142 PARSE_PANEL_SYMBOL(node, drsOps, "minLevel", &info->blk.minLevel); in ParsePanelInfo() 143 PARSE_PANEL_SYMBOL(node, drsOps, "maxLevel", &info->blk.maxLevel); in ParsePanelInfo() 144 PARSE_PANEL_SYMBOL(node, drsOps, "defLevel", &info->blk.defLevel); in ParsePanelInfo() 146 if (info->blk.type == BLK_PWM) { in ParsePanelInfo()
|
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/gavdp/a2dp_codec/sbclib/include/ |
H A D | sbc_decoder.h | 36 void Synthesize4(const Frame &frame, int ch, int blk); 37 void Synthesize8(const Frame &frame, int ch, int blk);
|
/ohos5.0/base/update/updater/test/unittest/applypatch_test/ |
H A D | blockset_unittest.cpp | 86 BlockSet blk(std::vector<BlockPair> {BlockPair{0, 1}}); 94 size_t ret = blk.WriteDataToBlock(fd, buffer); 106 BlockSet blk(std::vector<BlockPair> {BlockPair{0, 1}}); 109 BlockSet::MoveBlock(srcBuffer, blk, tgtBuffer);
|
/ohos5.0/base/update/updater/services/applypatch/ |
H A D | command_process.cpp | 93 BlockSet blk; in Execute() local 94 blk.ParserAndInsert(params.GetArgumentByPos(1)); in Execute() 96 auto ret = CommandResult(blk.WriteZeroToBlock(params.GetFileDescriptor(), isErase)); in Execute() 98 params.GetTransferParams()->written += blk.TotalBlockSize(); in Execute()
|
/ohos5.0/base/update/updater/services/updater_binary/ |
H A D | update_image_block.cpp | 512 BlockSet blk; in PrintAbnormalBlockHash() local 513 blk.ParserAndInsert(blockPairs); in PrintAbnormalBlockHash() 515 std::vector<BlockPair>::iterator it = blk.Begin(); in PrintAbnormalBlockHash() 516 for (; it != blk.End(); ++it) { in PrintAbnormalBlockHash() 554 BlockSet blk; in CalculateBlockSha() local 555 blk.ParserAndInsert(blockPairs); in CalculateBlockSha() 559 std::vector<BlockPair>::iterator it = blk.Begin(); in CalculateBlockSha() 560 for (; it != blk.End(); ++it) { in CalculateBlockSha()
|
/ohos5.0/drivers/hdf_core/framework/model/display/driver/ |
H A D | hdf_disp.h | 89 struct BlkDesc blk; member
|
H A D | hdf_disp.c | 154 info->minLevel = panel->info->blk.minLevel; in GetDispInfo() 155 info->maxLevel = panel->info->blk.maxLevel; in GetDispInfo() 156 info->defLevel = panel->info->blk.defLevel; in GetDispInfo()
|
/ohos5.0/drivers/hdf_core/framework/model/display/driver/panel/ |
H A D | mipi_icn9700.c | 274 .blk = { BLK_PWM, MIN_LEVEL, MAX_LEVEL, DEFAULT_LEVEL },
|
H A D | ili9881_st_5p5.c | 583 .blk = { BLK_PWM, MIN_LEVEL, MAX_LEVEL, DEFAULT_LEVEL },
|
H A D | ili9881c_boe.c | 612 .blk = { BLK_PWM, MIN_LEVEL, MAX_LEVEL, DEFAULT_LEVEL },
|
/ohos5.0/drivers/hdf_core/framework/model/display/driver/adapter_soc/ |
H A D | hi35xx_disp.c | 285 if (info->blk.type == BLK_PWM) { in Hi35xxHardWareInit()
|
/ohos5.0/docs/zh-cn/device-dev/driver/ |
H A D | driver-peripherals-lcd-des.md | 225 struct BlkDesc blk;
|
/ohos5.0/docs/en/device-dev/driver/ |
H A D | driver-peripherals-lcd-des.md | 224 struct BlkDesc blk;
|
/ohos5.0/foundation/multimedia/av_codec/test/unittest/resources/video_res/test_cbr/1080_3M/ |
H A D | video_10807.ts | 2038 …�q7�*�Rz|p̧���"A�J~�v���/#<I4e9��67�G32w��V����w�j�>�X�^_��-blk`p��P�Jhn����X�C~k…
|