Home
last modified time | relevance | path

Searched refs:idx (Results 3876 - 3900 of 5056) sorted by relevance

1...<<151152153154155156157158159160>>...203

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
H A DAggressiveAntiDepBreaker.cpp113 unsigned idx = GroupNodes.size(); in LeaveGroup() local
114 GroupNodes.push_back(idx); in LeaveGroup()
115 GroupNodeIndices[Reg] = idx; in LeaveGroup()
116 return idx; in LeaveGroup()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
H A DInstruction.cpp657 BasicBlock *Instruction::getSuccessor(unsigned idx) const { in getSuccessor()
661 return static_cast<const CLASS *>(this)->getSuccessor(idx); in getSuccessor()
669 void Instruction::setSuccessor(unsigned idx, BasicBlock *B) { in setSuccessor() argument
673 return static_cast<CLASS *>(this)->setSuccessor(idx, B); in setSuccessor()
/third_party/skia/src/core/
H A DSkScan_Hairline.cpp232 uint32_t idx = SkScalarCeilToInt(dx);
235 if (idx > idy) {
236 return idx + (idy >> 1);
238 return idy + (idx >> 1);
/third_party/openssl/crypto/rsa/
H A Drsa_lib.c203 int RSA_set_ex_data(RSA *r, int idx, void *arg) in RSA_set_ex_data() argument
205 return CRYPTO_set_ex_data(&r->ex_data, idx, arg); in RSA_set_ex_data()
208 void *RSA_get_ex_data(const RSA *r, int idx) in RSA_get_ex_data() argument
210 return CRYPTO_get_ex_data(&r->ex_data, idx); in RSA_get_ex_data()
/third_party/skia/src/sksl/
H A DSkSLAnalysis.cpp286 for (int8_t idx : swizzle.components()) { in checkSwizzleWrite()
287 SkASSERT(idx >= SwizzleComponent::X && idx <= SwizzleComponent::W); in checkSwizzleWrite()
288 int bit = 1 << idx; in checkSwizzleWrite()
/third_party/libbpf/src/
H A Dlibbpf.c720 static Elf_Scn *elf_sec_by_idx(const struct bpf_object *obj, size_t idx);
726 static Elf64_Shdr *elf_sec_hdr_by_idx(const struct bpf_object *obj, size_t idx, Elf64_Shdr *sheader);
731 static const char *elf_sec_name_by_idx(const struct bpf_object *obj, size_t idx);
737 static Elf_Data *elf_sec_data_by_idx(const struct bpf_object *obj, size_t idx, Elf_Data *data);
739 static Elf64_Sym *elf_sym_by_idx(const struct bpf_object *obj, size_t idx);
740 static Elf64_Rel *elf_rel_by_idx(Elf_Data *data, size_t idx);
2789 static bool section_have_execinstr(struct bpf_object *obj, int idx) argument
2793 sh = elf_sec_hdr(obj, elf_sec_by_idx(obj, idx));
2796 sh = elf_sec_hdr_by_idx(obj, idx, &header);
3439 static Elf_Scn *elf_sec_by_idx(const struct bpf_object *obj, size_t idx) argument
3510 elf_sec_hdr_by_idx(const struct bpf_object *obj, size_t idx, Elf64_Shdr *sheader) global() argument
3528 elf_sec_name_by_idx(const struct bpf_object *obj, size_t idx) global() argument
3575 elf_sec_data_by_idx(const struct bpf_object *obj, size_t idx, Elf_Data *data) global() argument
3586 elf_sym_by_idx(const struct bpf_object *obj, size_t idx) global() argument
3594 elf_rel_by_idx(Elf_Data *data, size_t idx) global() argument
3664 int idx = 0, err = 0; global() local
7182 int idx; global() local
8970 ssize_t idx; global() local
10188 ssize_t idx; global() local
[all...]
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/
H A Dlowering.h154 void SetCurrentIndex(size_t idx)
156 ASSERT(idx < MAX_INSTS);
157 currentIdx_ = idx;
/arkcompiler/ets_frontend/ets2panda/compiler/core/
H A Dpandagen.h181 void CreateObjectWithBuffer(const ir::AstNode *node, uint32_t idx);
182 void CreateObjectHavingMethod(const ir::AstNode *node, uint32_t idx);
190 void CreateArrayWithBuffer(const ir::AstNode *node, uint32_t idx);
/arkcompiler/ets_runtime/ecmascript/compiler/
H A Dbytecodes.h878 bool IsInRange(int idx) const in IsInRange()
880 return (idx <= end_) && (idx >= start_); in IsInRange()
H A Dshare_gate_meta_data.h210 void DecreaseIn(size_t idx) in DecreaseIn() argument
213 if (idx < statesIn_) { in DecreaseIn()
215 } else if (idx < statesIn_ + dependsIn_) { in DecreaseIn()
/arkcompiler/ets_runtime/ecmascript/interpreter/
H A Dslow_runtime_stub.h95 static JSTaggedValue StOwnByIndex(JSThread *thread, JSTaggedValue obj, uint32_t idx, JSTaggedValue value);
131 static JSTaggedValue LdObjByIndex(JSThread *thread, JSTaggedValue obj, uint32_t idx, bool callGetter,
133 static JSTaggedValue StObjByIndex(JSThread *thread, JSTaggedValue obj, uint32_t idx, JSTaggedValue value);
/base/global/resource_management_lite/frameworks/resmgr_lite/src/utils/
H A Dhap_parser.cpp109 auto idx = config.find(key); in GetModuleName() local
110 if (idx == std::string::npos) { in GetModuleName()
113 auto start = config.find("\"", idx + strlen(key)); in GetModuleName()
/base/customization/enterprise_device_management/interfaces/kits/common/src/
H A Dnapi_edm_common.cpp569 size_t idx = 0; in ConvertStringVectorToJS() local
573 napi_set_element(env, result, idx, obj); in ConvertStringVectorToJS()
574 idx++; in ConvertStringVectorToJS()
/base/security/huks/frameworks/huks_standard/main/core/src/
H A Dhks_verifier.c400 int32_t idx = X509_get_ext_by_OBJ(cert->x509, obj, -1); in GetKeyDescriptionSeqValue() local
401 if (idx < 0) { in GetKeyDescriptionSeqValue()
402 HKS_LOG_E("get ext idx by Obj failed"); in GetKeyDescriptionSeqValue()
406 X509_EXTENSION *ext = X509_get_ext(cert->x509, idx); in GetKeyDescriptionSeqValue()
408 HKS_LOG_E("X509 get ext by idx failed"); in GetKeyDescriptionSeqValue()
/base/web/webview/ohos_adapter/ohos_resource_adapter/src/
H A Dohos_resource_adapter_impl.cpp443 auto idx = config.find(key); in GetModuleName() local
444 if (idx == std::string::npos) { in GetModuleName()
447 auto start = config.find("\"", idx + strlen(key)); in GetModuleName()
/device/soc/hisilicon/common/platform/wifi/hi3881v100/driver/oal/
H A Doal_util.h625 static inline hi_void oal_del_lut_index(hi_u8 *lut_index_table, hi_u8 idx) in oal_del_lut_index() argument
627 hi_u8 byte = idx / 8; /* 8: 除以8 */ in oal_del_lut_index()
628 hi_u8 bit_offset = idx % 8; /* 8: 对8取余 */ in oal_del_lut_index()
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/
H A Dcj_richeditor_controller_ffi.cpp428 size_t idx = 0; in GetSpans() local
442 spans[idx] = current; in GetSpans()
443 idx ++; in GetSpans()
/foundation/arkui/ace_engine_lite/frameworks/src/core/components/test/unittest/common/event_bubble/
H A Devent_bubble_tdd_test.cpp935 " function (item, $idx) {\n"
1403 for (uint8_t idx = 0; idx < times; ++idx) { in EventBubbleTest016()
/foundation/multimedia/audio_framework/frameworks/native/audioeffect/src/
H A Daudio_enhance_chain.cpp289 uint32_t idx = 0; in DeinterleaverData() local
294 src + idx, algoAttr_.bitDepth); in DeinterleaverData()
296 idx += algoAttr_.bitDepth; in DeinterleaverData()
/foundation/graphic/graphic_2d/rosen/modules/texgine/src/
H A Dfont_parser.cpp314 size_t idx = fontSet_[i].rfind('/'); in SetFontDescriptor() local
315 std::string fontName = fontSet_[i].substr(idx + 1, fontSet_[i].size() - idx - 1); in SetFontDescriptor()
/foundation/multimodalinput/input/libudev/src/
H A Dudev_device.cpp122 [[nodiscard]] bool CheckBit(size_t idx) const in CheckBit()
124 auto vidx = idx / (sizeof(val_t) * CHAR_BIT); in CheckBit()
125 auto bidx = idx % (sizeof(val_t) * CHAR_BIT); in CheckBit()
/foundation/distributedhardware/device_manager/interfaces/kits/js4.0/src/
H A Ddm_native_util.cpp243 const std::vector<DmDeviceBasicInfo> &vecDevInfo, const int32_t idx, in DeviceBasicInfoToJsArray()
248 DmDeviceBasicToJsObject(env, vecDevInfo[idx], result); in DeviceBasicInfoToJsArray()
250 napi_status status = napi_set_element(env, arrayResult, idx, result); in DeviceBasicInfoToJsArray()
242 DeviceBasicInfoToJsArray(const napi_env &env, const std::vector<DmDeviceBasicInfo> &vecDevInfo, const int32_t idx, napi_value &arrayResult) DeviceBasicInfoToJsArray() argument
/third_party/ffmpeg/libavcodec/
H A Dmagicyuvenc.c396 const int idx = src[i]; in encode_slice() local
397 put_bits(&pb, he[idx].len, he[idx].code); in encode_slice()
/third_party/ffmpeg/libavfilter/
H A Dsrc_movie.c607 int idx, flags, i; in process_command() local
611 if (sscanf(args, "%i|%"SCNi64"|%i %1s", &idx, &ts, &flags, tail) != 3) in process_command()
614 ret = av_seek_frame(movie->format_ctx, idx, ts, flags); in process_command()
H A Daf_aspectralstats.c372 int idx = 0.f; in spectral_rolloff() local
381 idx = n; in spectral_rolloff()
386 return idx * scale; in spectral_rolloff()

Completed in 39 milliseconds

1...<<151152153154155156157158159160>>...203