/third_party/node/deps/v8/src/compiler/ |
H A D | bytecode-analysis.cc | 36 bit_vector_->Add(parameter_count_ + r.index()); in Add() 43 DCHECK(interpreter::Register(r.index() + i).is_parameter()); in AddList() 48 DCHECK(!interpreter::Register(r.index() + i).is_parameter()); in AddList() 49 bit_vector_->Add(parameter_count_ + r.index() + i); in AddList() 59 bool BytecodeLoopAssignments::ContainsParameter(int index) const { in ContainsParameter() 60 DCHECK_GE(index, 0); in ContainsParameter() 61 DCHECK_LT(index, parameter_count()); in ContainsParameter() 62 return bit_vector_->Contains(index); in ContainsParameter() 65 bool BytecodeLoopAssignments::ContainsLocal(int index) const { in ContainsLocal() 66 DCHECK_GE(index, in ContainsLocal() [all...] |
/third_party/node/deps/v8/src/runtime/ |
H A D | runtime-scopes.cc | 149 int index; in RUNTIME_FUNCTION() 152 index = Smi::ToInt(decl); in RUNTIME_FUNCTION() 158 index = Smi::ToInt(declarations->get(++i)); in RUNTIME_FUNCTION() 166 Cell::cast(exports->get(index - 1)).set_value(value); in RUNTIME_FUNCTION() 206 int index = Smi::ToInt(declarations->get(++i)); in RUNTIME_FUNCTION() 208 closure_feedback_cell_array->GetFeedbackCell(index); in RUNTIME_FUNCTION() 250 int index; in DeclareEvalHelper() local 256 Context::Lookup(context, name, DONT_FOLLOW_CHAINS, &index, &attributes, in DeclareEvalHelper() 288 if (index != Context::kNotFound) { in DeclareEvalHelper() 290 context->set(index, *valu in DeclareEvalHelper() 429 int index = argument_count - 1; NewSloppyArguments() local 474 operator [](int index) operator []() argument 483 operator [](int index) operator []() argument 630 int index; RUNTIME_FUNCTION() local 667 int index; LoadLookupSlot() local 767 int index; StoreLookupSlot() local 781 index, value); StoreLookupSlot() local [all...] |
/third_party/skia/src/sksl/ir/ |
H A D | SkSLFunctionCall.cpp | 68 for (int index = 0; index < numSlots; ++index) { in assemble_compound() 69 array.push_back(Literal::Make(line, value[index], &returnType.componentType())); in assemble_compound() 106 for (int index = 0; index < vecType.columns(); ++index) { in coalesce_n_way_vector() 181 for (int index = 0; index < type.columns(); ++index) { in optimize_comparison() 674 int index = 0; optimize_intrinsic_call() local 684 int index = 0; optimize_intrinsic_call() local [all...] |
/third_party/protobuf/src/google/protobuf/ |
H A D | descriptor_database.cc | 396 // to the index. 448 StringPiece name(const DescriptorIndex& index) const { in name() 449 return index.DecodeString(encoded_name, data_offset); in name() 453 const DescriptorIndex& index; member 456 return a.name(index) < b.name(index); in operator ()() 459 return a.name(index) < b; in operator ()() 462 return a < b.name(index); in operator ()() 472 StringPiece package(const DescriptorIndex& index) const { in package() 473 return index in package() 487 const DescriptorIndex& index; global() member 534 const DescriptorIndex& index; global() member 667 CheckForMutualSubsymbols(StringPiece symbol_name, Iter* iter, Iter2 end, const Index& index) CheckForMutualSubsymbols() argument [all...] |
/foundation/arkui/ace_engine/frameworks/core/components/form/resource/ |
H A D | form_manager_resource.cpp | 117 size_t index = 0; in ParseMapFromString() local 119 while (index < totalLen) { in ParseMapFromString() 120 size_t end = param.find(FORM_MANAGER_PARAM_AND, index); in ParseMapFromString() 125 size_t mid = param.find(FORM_MANAGER_PARAM_EQUALS, index); in ParseMapFromString() 127 index = end + andLen; in ParseMapFromString() 130 std::string key = param.substr(index, mid - index); in ParseMapFromString() 133 index = end + andLen; in ParseMapFromString()
|
/foundation/arkui/ace_engine/frameworks/core/components/plugin/resource/ |
H A D | plugin_manager_resource.cpp | 115 size_t index = 0; in ParseMapFromString() local 117 while (index < totalLen) { in ParseMapFromString() 118 size_t end = param.find(PLUGIN_MANAGER_PARAM_AND, index); in ParseMapFromString() 123 size_t mid = param.find(PLUGIN_MANAGER_PARAM_EQUALS, index); in ParseMapFromString() 125 index = end + andLen; in ParseMapFromString() 128 std::string key = param.substr(index, mid - index); in ParseMapFromString() 131 index = end + andLen; in ParseMapFromString()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/swiper_indicator/indicator_common/ |
H A D | indicator_model_ng.cpp | 55 void IndicatorModelNG::SetIndex(uint32_t index) in SetIndex() argument 57 ACE_UPDATE_LAYOUT_PROPERTY(SwiperIndicatorLayoutProperty, InitialIndex, index); in SetIndex() 83 pattern->UpdateChangeEvent([event = std::move(onChange)](int32_t index) { in SetOnChange() 84 SwiperChangeEvent eventInfo(index); in SetOnChange() 141 void IndicatorModelNG::SetIndex(FrameNode* frameNode, uint32_t index) in SetIndex() argument 143 ACE_UPDATE_NODE_LAYOUT_PROPERTY(SwiperIndicatorLayoutProperty, InitialIndex, index, frameNode); in SetIndex() 179 pattern->UpdateChangeEvent([event = std::move(onChange)](int32_t index) { in SetOnChange() 180 SwiperChangeEvent eventInfo(index); in SetOnChange()
|
/foundation/multimedia/av_codec/frameworks/native/avcodec/ |
H A D | avcodec_video_decoder_impl.cpp | 167 int32_t AVCodecVideoDecoderImpl::QueueInputBuffer(uint32_t index, AVCodecBufferInfo info, AVCodecBufferFlag flag) in QueueInputBuffer() argument 172 return codecClient_->QueueInputBuffer(index, info, flag); in QueueInputBuffer() 175 int32_t AVCodecVideoDecoderImpl::QueueInputBuffer(uint32_t index) in QueueInputBuffer() argument 180 return codecClient_->QueueInputBuffer(index); in QueueInputBuffer() 191 int32_t AVCodecVideoDecoderImpl::ReleaseOutputBuffer(uint32_t index, bool render) in ReleaseOutputBuffer() argument 196 return codecClient_->ReleaseOutputBuffer(index, render); in ReleaseOutputBuffer() 199 int32_t AVCodecVideoDecoderImpl::RenderOutputBufferAtTime(uint32_t index, int64_t renderTimestampNs) in RenderOutputBufferAtTime() argument 204 return codecClient_->RenderOutputBufferAtTime(index, renderTimestampNs); in RenderOutputBufferAtTime()
|
/foundation/graphic/graphic_3d/lume/LumeEngine/ecshelper/ComponentTools/ |
H A D | component_query.cpp | 40 bool ComponentQuery::ResultRow::IsValidComponentId(size_t index) const in IsValidComponentId() 42 if (index < components.size()) { in IsValidComponentId() 43 return components[index] != IComponentManager::INVALID_COMPONENT_ID; in IsValidComponentId() 100 size_t index = 0U; in Execute() local 103 auto& row = result_[index]; in Execute() 110 // NOTE: starting from index 1 that is the first manager after the base component set. in Execute() 137 mapping_[entity] = index; in Execute() 139 ++index; in Execute() 143 result_.resize(index); in Execute()
|
/foundation/multimedia/av_codec/test/unittest/video_test/vcodec_server_test/mock/ |
H A D | codec_drm_decrypt_mock.cpp | 82 uint32_t index) in DrmFindAvsCeiNalUnit() 87 (void)index; in DrmFindAvsCeiNalUnit() 92 uint32_t index) in DrmFindHevcCeiNalUnit() 97 (void)index; in DrmFindHevcCeiNalUnit() 102 uint32_t index) in DrmFindH264CeiNalUnit() 107 (void)index; in DrmFindH264CeiNalUnit() 112 uint32_t index) const in DrmFindCeiNalUnit() 117 (void)index; in DrmFindCeiNalUnit() 81 DrmFindAvsCeiNalUnit(const uint8_t *data, uint32_t dataSize, uint32_t &ceiStartPos, uint32_t index) DrmFindAvsCeiNalUnit() argument 91 DrmFindHevcCeiNalUnit(const uint8_t *data, uint32_t dataSize, uint32_t &ceiStartPos, uint32_t index) DrmFindHevcCeiNalUnit() argument 101 DrmFindH264CeiNalUnit(const uint8_t *data, uint32_t dataSize, uint32_t &ceiStartPos, uint32_t index) DrmFindH264CeiNalUnit() argument
|
/foundation/multimedia/camera_framework/frameworks/native/ndk/impl/ |
H A D | preview_output_impl.cpp | 155 for (size_t index = 0; index < frameRate.size(); ++index) { in GetSupportedFrameRates() 156 if (frameRate[index].size() <= 1) { in GetSupportedFrameRates() 162 newframeRateRange[index].min = static_cast<uint32_t>(frameRate[index][0]); in GetSupportedFrameRates() 163 newframeRateRange[index].max = static_cast<uint32_t>(frameRate[index][1]); in GetSupportedFrameRates()
|
H A D | video_output_impl.cpp | 163 for (size_t index = 0; index < frameRate.size(); ++index) { in GetSupportedFrameRates() 164 if (frameRate[index].size() <= 1) { in GetSupportedFrameRates() 170 newframeRateRange[index].min = static_cast<uint32_t>(frameRate[index][0]); in GetSupportedFrameRates() 171 newframeRateRange[index].max = static_cast<uint32_t>(frameRate[index][1]); in GetSupportedFrameRates()
|
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/oh_adapter/src/ |
H A D | rd_sqlite_utils.cpp | 152 int RDSQLiteUtils::BindBlobToStatement(sqlite3_stmt *statement, int index, const std::vector<uint8_t> &value) in BindBlobToStatement() argument 160 errCode = sqlite3_bind_zeroblob(statement, index, -1); // -1 for zero-length blob. in BindBlobToStatement() 162 errCode = sqlite3_bind_blob(statement, index, static_cast<const void *>(value.data()), value.size(), in BindBlobToStatement() 168 int RDSQLiteUtils::GetColumnBlobValue(sqlite3_stmt *statement, int index, std::vector<uint8_t> &value) in GetColumnBlobValue() argument 174 int keySize = sqlite3_column_bytes(statement, index); in GetColumnBlobValue() 181 auto keyRead = static_cast<const uint8_t *>(sqlite3_column_blob(statement, index)); in GetColumnBlobValue() 192 int RDSQLiteUtils::BindTextToStatement(sqlite3_stmt *statement, int index, const std::string &value) in BindTextToStatement() argument 198 int errCode = sqlite3_bind_text(statement, index, value.c_str(), value.length(), SQLITE_TRANSIENT); in BindTextToStatement()
|
/third_party/ffmpeg/libavutil/x86/ |
H A D | cpu.c | 33 #define cpuid(index, eax, ebx, ecx, edx) \ 34 ff_cpu_cpuid(index, &eax, &ebx, &ecx, &edx) 36 #define xgetbv(index, eax, edx) \ 37 ff_cpu_xgetbv(index, &eax, &edx) 42 #define cpuid(index, eax, ebx, ecx, edx) \ 48 : "0" (index), "2"(0)) 50 #define xgetbv(index, eax, edx) \ 51 __asm__ (".byte 0x0f, 0x01, 0xd0" : "=a"(eax), "=d"(edx) : "c" (index))
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
H A D | DateNumberFormat.java | 162 int index = limit - 1; in format() 164 decimalBuf[index] = digits[(number % 10)]; in format() 166 if (index == 0 || number == 0) { in format() 169 index--; in format() 171 int padding = minIntDigits - (limit - index); in format() 173 decimalBuf[--index] = digits[0]; in format() 175 int length = limit - index; in format() 176 toAppendTo.append(decimalBuf, index, length); in format()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
H A D | CompactCharArray.java | 28 * A compact array is composed of a index array and value array. The index 87 * @exception IllegalArgumentException If the index is out of range. 99 char index = indexArray[i]; in CompactCharArray() 100 if (index >= newValues.length+BLOCKCOUNT) in CompactCharArray() 114 * @throws IllegalArgumentException if the index or value array is 129 * @param index the character to get the mapped value with 135 public char elementAt(char index) in elementAt() argument 137 int ix = (indices[index >> BLOCKSHIFT] & 0xFFFF) in elementAt() 138 + (index in elementAt() 151 setElementAt(char index, char value) setElementAt() argument [all...] |
H A D | CompactByteArray.java | 26 * A compact array is composed of a index array and value array. The index 86 * @exception IllegalArgumentException If the index is out of range. 98 char index = indexArray[i]; in CompactByteArray() 99 if (index >= newValues.length+BLOCKCOUNT) in CompactByteArray() 113 * @throws IllegalArgumentException if the index or value array is 128 * @param index the character to get the mapped value with 134 public byte elementAt(char index) in elementAt() argument 136 return (values[(indices[index >> BLOCKSHIFT] & 0xFFFF) in elementAt() 137 + (index in elementAt() 149 setElementAt(char index, byte value) setElementAt() argument [all...] |
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/normalizer/ |
H A D | UnicodeNormalizerConformanceTest.java | 223 int index = 0; in hexsplit() 225 while(index< len){ in hexsplit() 226 if(toHex.charAt(index)==' '){ in hexsplit() 227 index++; in hexsplit() 229 int spacePos = toHex.indexOf(' ', index); in hexsplit() 231 appendInt(buf,toHex.substring(index,len),s); in hexsplit() 234 appendInt(buf,toHex.substring(index, spacePos),s); in hexsplit() 236 index = spacePos+1; in hexsplit()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/ |
H A D | CompactCharArray.java | 29 * A compact array is composed of a index array and value array. The index 89 * @exception IllegalArgumentException If the index is out of range. 101 char index = indexArray[i]; in CompactCharArray() 102 if (index >= newValues.length+BLOCKCOUNT) in CompactCharArray() 116 * @throws IllegalArgumentException if the index or value array is 131 * @param index the character to get the mapped value with 137 public char elementAt(char index) in elementAt() argument 139 int ix = (indices[index >> BLOCKSHIFT] & 0xFFFF) in elementAt() 140 + (index in elementAt() 153 setElementAt(char index, char value) setElementAt() argument [all...] |
H A D | CompactByteArray.java | 27 * A compact array is composed of a index array and value array. The index 88 * @exception IllegalArgumentException If the index is out of range. 100 char index = indexArray[i]; in CompactByteArray() 101 if (index >= newValues.length+BLOCKCOUNT) in CompactByteArray() 115 * @throws IllegalArgumentException if the index or value array is 130 * @param index the character to get the mapped value with 136 public byte elementAt(char index) in elementAt() argument 138 return (values[(indices[index >> BLOCKSHIFT] & 0xFFFF) in elementAt() 139 + (index in elementAt() 151 setElementAt(char index, byte value) setElementAt() argument [all...] |
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/ |
H A D | DateNumberFormat.java | 166 int index = limit - 1; in format() 168 decimalBuf[index] = digits[(number % 10)]; in format() 170 if (index == 0 || number == 0) { in format() 173 index--; in format() 175 int padding = minIntDigits - (limit - index); in format() 177 decimalBuf[--index] = digits[0]; in format() 179 int length = limit - index; in format() 180 toAppendTo.append(decimalBuf, index, length); in format()
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/ |
H A D | UnicodeNormalizerConformanceTest.java | 220 int index = 0; in hexsplit() 222 while(index< len){ in hexsplit() 223 if(toHex.charAt(index)==' '){ in hexsplit() 224 index++; in hexsplit() 226 int spacePos = toHex.indexOf(' ', index); in hexsplit() 228 appendInt(buf,toHex.substring(index,len),s); in hexsplit() 231 appendInt(buf,toHex.substring(index, spacePos),s); in hexsplit() 233 index = spacePos+1; in hexsplit()
|
/third_party/jerryscript/jerry-core/ecma/builtin-objects/ |
H A D | ecma-builtin-function-prototype.c | 133 uint32_t index = 0; in ecma_builtin_function_prototype_object_apply() local 136 for (index = 0; index < length; index++) in ecma_builtin_function_prototype_object_apply() 138 ecma_value_t get_value = ecma_op_object_get_by_uint32_index (obj_p, index); in ecma_builtin_function_prototype_object_apply() 146 arguments_list_p[index] = get_value; in ecma_builtin_function_prototype_object_apply() 151 JERRY_ASSERT (index == length); in ecma_builtin_function_prototype_object_apply() 158 for (uint32_t remove_index = 0; remove_index < index; remove_index++) in ecma_builtin_function_prototype_object_apply()
|
/third_party/node/test/node-api/test_reference_by_node_api_version/ |
H A D | test_reference_by_node_api_version.c | 29 uint32_t* index) { in GetArgValueAsIndex() 38 return napi_get_value_uint32(env, argValue, index); in GetArgValueAsIndex() 44 uint32_t index; in GetRef() local 45 NODE_API_CHECK_STATUS(GetArgValueAsIndex(env, info, &index)); in GetRef() 51 *ref = refValues[index]; in GetRef() 81 uint32_t index = (uint32_t)valueType; in CreateRef() local 86 napi_create_reference(env, argValue, 1, valueRefs + index)); in CreateRef() 88 return ToUInt32Value(env, index); in CreateRef() 27 GetArgValueAsIndex(napi_env env, napi_callback_info info, uint32_t* index) GetArgValueAsIndex() argument
|
/third_party/node/deps/v8/src/wasm/ |
H A D | wasm-debug.h | 49 int index; member 59 if (index != other.index) return false; in operator ==() 99 return changed_value.index < stack_index; in FindChangedValue() 101 return it != changed_values_.end() && it->index == stack_index ? &*it in FindChangedValue() 183 WasmValue GetStackValue(int index, Address pc, Address fp, 186 // Returns the name of the entity (with the given |index| and |kind|) derived 189 WireBytesRef GetExportName(ImportExportKindCode kind, uint32_t index); 191 // Returns the module and field name of the entity (with the given |index| 195 uint32_t index); [all...] |