Home
last modified time | relevance | path

Searched refs:consts (Results 1 – 12 of 12) sorted by relevance

/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/gavdp/a2dp_codec/sbclib/src/
H A Dsbc_encoder.cpp193 temp[VALUE_0] += static_cast<int32_t>(inData[hop] * consts[hop]); in AnalyzeFourForPolyphaseFilter()
194 temp[VALUE_0] += static_cast<int32_t>(inData[hop + VALUE_1] * consts[hop + VALUE_1]); in AnalyzeFourForPolyphaseFilter()
195 temp[VALUE_1] += static_cast<int32_t>(inData[hop + VALUE_2] * consts[hop + VALUE_2]); in AnalyzeFourForPolyphaseFilter()
196 temp[VALUE_1] += static_cast<int32_t>(inData[hop + VALUE_3] * consts[hop + VALUE_3]); in AnalyzeFourForPolyphaseFilter()
197 temp[VALUE_2] += static_cast<int32_t>(inData[hop + VALUE_4] * consts[hop + VALUE_4]); in AnalyzeFourForPolyphaseFilter()
198 temp[VALUE_2] += static_cast<int32_t>(inData[hop + VALUE_5] * consts[hop + VALUE_5]); in AnalyzeFourForPolyphaseFilter()
242 AnalyzeFourForPolyphaseFilter(t1, inData, consts); in AnalyzeFourFunction()
244 AnalyzeFourForCosTransform(t1, t2, consts); in AnalyzeFourFunction()
255 temp[VALUE_0] += static_cast<int32_t>(inData[hop] * consts[hop]); in AnalyzeEightForPolyphaseFilter()
333 AnalyzeEightForPolyphaseFilter(t1, inData, consts); in AnalyzeEightFunction()
[all …]
/ohos5.0/foundation/communication/bluetooth_service/services/bluetooth/service/src/gavdp/a2dp_codec/sbclib/include/
H A Dsbc_encoder.h42 …ic void AnalyzeFourForPolyphaseFilter(int32_t *temp, const int16_t *inData, const int16_t *consts);
44 static void AnalyzeFourForCosTransform(int32_t *temp1, int16_t *temp2, const int16_t *consts);
45 void AnalyzeFourFunction(const int16_t *inData, int32_t *outData, const int16_t *consts) const;
46 …c void AnalyzeEightForPolyphaseFilter(int32_t *temp, const int16_t *inData, const int16_t *consts);
48 static void AnalyzeEightForCosTransform(int32_t *temp1, int16_t *temp2, const int16_t *consts);
49 void AnalyzeEightFunction(const int16_t *inData, int32_t *outData, const int16_t *consts) const;
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeBinaryCompile/LumeShaderCompiler/src/
H A Dspirv_cross_helpers_gles.cpp88 std::vector<spirv_cross::SPIRConstant> consts; in GetConstants() local
90 [&consts](uint32_t, const spirv_cross::SPIRConstant& c) { consts.push_back(c); }); in GetConstants()
91 return consts; in GetConstants()
/ohos5.0/commonlibrary/rust/ylong_http/ylong_http/src/huffman/
H A Dmod.rs36 mod consts; module
40 use consts::{HUFFMAN_DECODE, HUFFMAN_ENCODE};
/ohos5.0/commonlibrary/rust/ylong_json/src/
H A Dlib.rs54 mod consts; module
H A Dencoder.rs14 use crate::{consts::*, Array, Error, JsonValue, Number, Object};
H A Dconsts.rs162 use crate::consts::PrintMapItem;
H A Ddeserializer.rs23 use crate::{consts::*, error::*, states::*, Number, ParseError::*};
H A Dstates.rs16 consts::*, deserializer::Deserializer, Array, Error, JsonValue, Number, Object, ParseError,
/ohos5.0/commonlibrary/rust/ylong_json/
H A DREADME_zh.md42 │ ├─ consts.rs # 一些常数与表格的定义
H A DREADME.md41 │ ├─ consts.rs # Some definitions of constants and tables
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/gles/
H A Drender_backend_gles.cpp2188 …endGLES::SetPushConstants(uint32_t program, const array_view<Gles::PushConstantReflection>& consts) in SetPushConstants() argument
2200 for (const auto& pc : consts) { in SetPushConstants()