/kernel/liteos_a/testsuites/kernel/sample/posix/pthread/full/ |
H A D | It_posix_pthread_039.c | 54 UINT32 index; in Testcase() local 73 for (index = 0; index < LOSCFG_BASE_CORE_TSK_LIMIT; index++) { in Testcase() 74 if (g_taskCBArray[index].taskStatus == OS_TASK_STATUS_UNUSED) { in Testcase() 89 for (count1 = 0, index = 0; index < LOSCFG_BASE_CORE_TSK_LIMIT; index++) { in Testcase() 90 if (g_taskCBArray[index].taskStatus == OS_TASK_STATUS_UNUSED) { in Testcase()
|
/kernel/liteos_m/testsuites/sample/kernel/dynlink/lib/ |
H A D | dynamic_athmtc.c | 48 int index = 0; in It_dynlink_while() local 52 while ((index++) < cnt) { in It_dynlink_while() 61 int index = 0; in It_dynlink_for() local 65 for (; index < cnt; ++index) { in It_dynlink_for() 103 int index = 0; in It_dynlink_continue() local 107 for (; index < cnt; ++index) { in It_dynlink_continue() 108 if (index % 2) { in It_dynlink_continue()
|
/kernel/liteos_m/testsuites/sample/kernel/queue/ |
H A D | It_los_queue_022.c | 38 UINT32 index;
in Testcase() local 44 for (index = 0; index < limit; index++) {
in Testcase() 45 ret = LOS_QueueCreate(NULL, QUEUE_BASE_NUM, &queueID[index], 0, QUEUE_BASE_MSGSIZE);
in Testcase() 59 for (index = 0; index < limit; index++) {
in Testcase() 60 ret = LOS_QueueDelete(queueID[index]);
in Testcase()
|
H A D | It_los_queue_head_016.c | 38 UINT32 index;
in Testcase() local 44 for (index = 0; index < limit; index++) {
in Testcase() 45 ret = LOS_QueueCreate(NULL, QUEUE_BASE_NUM, &queueID[index], 0, QUEUE_BASE_MSGSIZE);
in Testcase() 59 for (index = 0; index < limit; index++) {
in Testcase() 60 ret = LOS_QueueDelete(queueID[index]);
in Testcase()
|
/third_party/node/deps/v8/src/bigint/ |
H A D | util.h | 35 unsigned long index = 0; // NOLINT(runtime/int). MSVC insists. in CountLeadingZeros() 36 return _BitScanReverse64(&index, value) ? 63 - index : 64; in CountLeadingZeros() 46 unsigned long index = 0; // NOLINT(runtime/int). MSVC insists. in CountLeadingZeros() 47 return _BitScanReverse(&index, value) ? 31 - index : 32; in CountLeadingZeros() 57 unsigned long index = 0; // NOLINT(runtime/int). in CountTrailingZeros() 58 return _BitScanForward(&index, value) ? index : 32; in CountTrailingZeros()
|
/third_party/skia/fuzz/ |
H A D | FuzzPolyUtils.cpp | 19 for (int index = 0; index < count; ++index) { in DEF_FUZZ() 20 fuzz->next(&polygon[index].fX, &polygon[index].fY); in DEF_FUZZ() 39 for (int index = 0; index < count; ++index) { in DEF_FUZZ() 40 fuzz->next(&indexMap[index]); in DEF_FUZZ()
|
/third_party/node/deps/v8/src/objects/ |
H A D | js-objects-inl.h | 13 #include "src/objects/field-index-inl.h" 83 uint32_t index) { in GetElement() 84 LookupIterator it(isolate, receiver, index, receiver); in GetElement() 320 int JSObject::GetEmbedderFieldOffset(int index) { in GetEmbedderFieldOffset() argument 321 DCHECK_LT(static_cast<unsigned>(index), in GetEmbedderFieldOffset() 323 return GetEmbedderFieldsStartOffset() + (kEmbedderDataSlotSize * index); in GetEmbedderFieldOffset() 326 Object JSObject::GetEmbedderField(int index) { in GetEmbedderField() argument 327 return EmbedderDataSlot(*this, index).load_tagged(); in GetEmbedderField() 330 void JSObject::SetEmbedderField(int index, Object value) { in SetEmbedderField() argument 331 EmbedderDataSlot::store_tagged(*this, index, valu in SetEmbedderField() 81 GetElement(Isolate* isolate, Handle<JSReceiver> receiver, uint32_t index) GetElement() argument 334 SetEmbedderField(int index, Smi value) SetEmbedderField() argument 364 RawFastPropertyAt(FieldIndex index, SeqCstAccessTag tag) const RawFastPropertyAt() argument 370 RawFastPropertyAt(PtrComprCageBase cage_base, FieldIndex index, SeqCstAccessTag tag) const RawFastPropertyAt() argument 415 RawFastInobjectPropertyAtPut(FieldIndex index, Object value, WriteBarrierMode mode) RawFastInobjectPropertyAtPut() argument 423 RawFastInobjectPropertyAtPut(FieldIndex index, Object value, SeqCstAccessTag tag) RawFastInobjectPropertyAtPut() argument 434 FastPropertyAtPut(FieldIndex index, Object value, WriteBarrierMode mode) FastPropertyAtPut() argument 444 FastPropertyAtPut(FieldIndex index, Object value, SeqCstAccessTag tag) FastPropertyAtPut() argument 458 FieldIndex index = FieldIndex::ForDescriptor(map(), descriptor); WriteToField() local 480 RawFastPropertyAtSwap(FieldIndex index, Object value, SeqCstAccessTag tag) RawFastPropertyAtSwap() argument 486 RawFastPropertyAtSwap(PtrComprCageBase cage_base, FieldIndex index, Object value, SeqCstAccessTag tag) RawFastPropertyAtSwap() argument 497 GetInObjectPropertyOffset(int index) GetInObjectPropertyOffset() argument 501 InObjectPropertyAt(int index) InObjectPropertyAt() argument 506 InObjectPropertyAtPut(int index, Object value, WriteBarrierMode mode) InObjectPropertyAtPut() argument 829 HasOwnProperty(Isolate* isolate, Handle<JSReceiver> object, uint32_t index) HasOwnProperty() argument 859 GetOwnPropertyAttributes( Handle<JSReceiver> object, uint32_t index) GetOwnPropertyAttributes() argument 866 HasElement(Isolate* isolate, Handle<JSReceiver> object, uint32_t index) HasElement() argument 872 GetElementAttributes( Handle<JSReceiver> object, uint32_t index) GetElementAttributes() argument 879 GetOwnElementAttributes( Handle<JSReceiver> object, uint32_t index) GetOwnElementAttributes() argument 914 ShouldConvertToSlowElements(JSObject object, uint32_t capacity, uint32_t index, uint32_t* new_capacity) ShouldConvertToSlowElements() argument [all...] |
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/linear_split/ |
H A D | linear_split_layout_algorithm.cpp | 167 int32_t index = 0; in MeasureChildren() local 172 child->Measure(GetChildConstrain(layoutWrapper, childConstraint, index)); in MeasureChildren() 179 index++; in MeasureChildren() 231 LayoutWrapper* layoutWrapper, LayoutConstraintF childConstrain, int32_t index) in GetChildConstrain() 235 if (!childrenDragPos_.empty() && (index < visibleChildCount_)) { in GetChildConstrain() 237 childrenDragPos_[index + 1] - childrenDragPos_[index] - static_cast<float>(DEFAULT_SPLIT_HEIGHT); in GetChildConstrain() 239 if (index == visibleChildCount_ - 1) { in GetChildConstrain() 244 if (index == 0) { in GetChildConstrain() 246 } else if (index in GetChildConstrain() 230 GetChildConstrain( LayoutWrapper* layoutWrapper, LayoutConstraintF childConstrain, int32_t index) GetChildConstrain() argument 315 int32_t index = 0; LayoutRowSplit() local 366 int32_t index = 0; LayoutColumnSplit() local 402 ColumnSplitChildConstrain( LayoutWrapper* layoutWrapper, const RefPtr<LayoutWrapper>& item, int32_t index) ColumnSplitChildConstrain() argument 460 int32_t index = 0; LayoutBeforeAPI10() local 517 int32_t index = 0; global() local 548 int32_t index = 0; LayoutColumnSplitBeforeAPI10() local [all...] |
/foundation/graphic/graphic_3d/lume/LumeRender/src/nodecontext/ |
H A D | render_node_graph_manager.cpp | 179 const uint32_t index = RenderHandleUtil::GetIndexPart(handle); 181 if (index < static_cast<uint32_t>(nodeGraphHandles_.size())) { 183 RenderHandleUtil::GetGenerationIndexPart(nodeGraphHandles_[index].GetHandle()); 184 // ignore if not correct generation index 305 const uint32_t index = RenderHandleUtil::GetIndexPart(handle); 306 if (index < nodeGraphData_.size()) { 309 RenderHandleUtil::GetGenerationIndexPart(nodeGraphHandles_[index].GetHandle()); 312 if (nodeGraphData_[index]) { 318 for (const auto& rnRef : nodeGraphData_[index]->renderNodeData) 326 device_.GetFrameCount(), move(nodeGraphData_[index] [all...] |
/kernel/linux/linux-5.10/drivers/hwmon/ |
H A D | adt7475.c | 134 /* Macros to easily index the registers */ 223 static void adt7475_read_pwm(struct i2c_client *client, int index); 339 (data->alarms >> sattr->index) & 1); in voltage_show() 341 val = data->voltage[sattr->nr][sattr->index]; in voltage_show() 343 reg2volt(sattr->index, val, data->bypass_attn)); in voltage_show() 363 data->voltage[sattr->nr][sattr->index] = in voltage_store() 364 volt2reg(sattr->index, val, data->bypass_attn); in voltage_store() 366 if (sattr->index < ADT7475_VOLTAGE_COUNT) { in voltage_store() 368 reg = VOLTAGE_MIN_REG(sattr->index); in voltage_store() 370 reg = VOLTAGE_MAX_REG(sattr->index); in voltage_store() 860 hw_set_pwm(struct i2c_client *client, int index, unsigned int pwmctl, unsigned int pwmchan) hw_set_pwm() argument 1746 adt7475_read_pwm(struct i2c_client *client, int index) adt7475_read_pwm() argument [all...] |
/kernel/linux/linux-6.6/drivers/hwmon/ |
H A D | adt7475.c | 135 /* Macros to easily index the registers */ 224 static void adt7475_read_pwm(struct i2c_client *client, int index); 340 (data->alarms >> sattr->index) & 1); in voltage_show() 342 val = data->voltage[sattr->nr][sattr->index]; in voltage_show() 344 reg2volt(sattr->index, val, data->bypass_attn)); in voltage_show() 364 data->voltage[sattr->nr][sattr->index] = in voltage_store() 365 volt2reg(sattr->index, val, data->bypass_attn); in voltage_store() 367 if (sattr->index < ADT7475_VOLTAGE_COUNT) { in voltage_store() 369 reg = VOLTAGE_MIN_REG(sattr->index); in voltage_store() 371 reg = VOLTAGE_MAX_REG(sattr->index); in voltage_store() 861 hw_set_pwm(struct i2c_client *client, int index, unsigned int pwmctl, unsigned int pwmchan) hw_set_pwm() argument 1838 adt7475_read_pwm(struct i2c_client *client, int index) adt7475_read_pwm() argument [all...] |
/foundation/arkui/ace_engine/frameworks/core/components_ng/syntax/ |
H A D | lazy_for_each_node.cpp | 71 for (auto& [index, item] : items) { in BuildAllChildren() 123 void LazyForEachNode::OnDataAdded(size_t index) in OnDataAdded() argument 126 auto insertIndex = static_cast<int32_t>(index); in OnDataAdded() 129 builder_->OnDataAdded(index); in OnDataAdded() 138 void LazyForEachNode::OnDataBulkAdded(size_t index, size_t count) in OnDataBulkAdded() argument 141 auto insertIndex = static_cast<int32_t>(index); in OnDataBulkAdded() 144 builder_->OnDataBulkAdded(index, count); in OnDataBulkAdded() 153 void LazyForEachNode::OnDataDeleted(size_t index) in OnDataDeleted() argument 156 auto deletedIndex = static_cast<int32_t>(index); in OnDataDeleted() 159 auto node = builder_->OnDataDeleted(index); in OnDataDeleted() 177 OnDataBulkDeleted(size_t index, size_t count) OnDataBulkDeleted() argument 205 OnDataChanged(size_t index) OnDataChanged() argument 219 OnDataBulkChanged(size_t index, size_t count) OnDataBulkChanged() argument 314 GetFrameChildByIndex(uint32_t index, bool needBuild, bool isCache, bool addToRenderTree) GetFrameChildByIndex() argument 381 DoRemoveChildInRenderTree(uint32_t index, bool isAll) DoRemoveChildInRenderTree() argument 503 GetFrameNode(int32_t index) GetFrameNode() argument 563 NotifyChangeWithCount(int32_t index, int32_t count, NotificationType notificationType) const NotifyChangeWithCount() argument [all...] |
/kernel/linux/linux-5.10/drivers/tty/hvc/ |
H A D | hvc_console.c | 79 * This value is used to assign a tty->index value to a hvc_struct based 90 static struct hvc_struct *hvc_get_by_index(int index) in hvc_get_by_index() argument 99 if (hp->index == index) { in hvc_get_by_index() 156 int r, donecr = 0, index = co->index; in hvc_console_print() local 159 if (index >= MAX_NR_HVC_CONSOLES) in hvc_console_print() 163 if (vtermnos[index] == -1) in hvc_console_print() 177 r = cons_ops[index]->put_chars(vtermnos[index], in hvc_console_print() 197 hvc_console_device(struct console *c, int *index) hvc_console_device() argument 265 hvc_check_console(int index) hvc_check_console() argument 285 hvc_instantiate(uint32_t vtermno, int index, const struct hv_ops *ops) hvc_instantiate() argument [all...] |
/kernel/linux/linux-6.6/drivers/tty/hvc/ |
H A D | hvc_console.c | 79 * This value is used to assign a tty->index value to a hvc_struct based 90 static struct hvc_struct *hvc_get_by_index(int index) in hvc_get_by_index() argument 99 if (hp->index == index) { in hvc_get_by_index() 156 int r, donecr = 0, index = co->index; in hvc_console_print() local 159 if (index >= MAX_NR_HVC_CONSOLES) in hvc_console_print() 163 if (vtermnos[index] == -1) in hvc_console_print() 177 r = cons_ops[index]->put_chars(vtermnos[index], in hvc_console_print() 197 hvc_console_device(struct console *c, int *index) hvc_console_device() argument 265 hvc_check_console(int index) hvc_check_console() argument 285 hvc_instantiate(uint32_t vtermno, int index, const struct hv_ops *ops) hvc_instantiate() argument [all...] |
/third_party/icu/icu4c/source/common/ |
H A D | edits.cpp | 277 // ab deletions meet bc insertions at the same intermediate-string index. in mergeAndAppend() 401 array(a), index(0), length(len), remaining(0), in Iterator() 410 U_ASSERT(index < length); in readLength() 411 U_ASSERT(array[index] >= 0x8000); in readLength() 412 return array[index++] & 0x7fff; in readLength() 414 U_ASSERT((index + 2) <= length); in readLength() 415 U_ASSERT(array[index] >= 0x8000); in readLength() 416 U_ASSERT(array[index + 1] >= 0x8000); in readLength() 418 ((int32_t)(array[index] & 0x7fff) << 15) | in readLength() 419 (array[index in readLength() [all...] |
/third_party/node/deps/icu-small/source/common/ |
H A D | edits.cpp | 277 // ab deletions meet bc insertions at the same intermediate-string index. in mergeAndAppend() 401 array(a), index(0), length(len), remaining(0), in Iterator() 410 U_ASSERT(index < length); in readLength() 411 U_ASSERT(array[index] >= 0x8000); in readLength() 412 return array[index++] & 0x7fff; in readLength() 414 U_ASSERT((index + 2) <= length); in readLength() 415 U_ASSERT(array[index] >= 0x8000); in readLength() 416 U_ASSERT(array[index + 1] >= 0x8000); in readLength() 418 ((int32_t)(array[index] & 0x7fff) << 15) | in readLength() 419 (array[index in readLength() [all...] |
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | edits.cpp | 277 // ab deletions meet bc insertions at the same intermediate-string index. in mergeAndAppend() 401 array(a), index(0), length(len), remaining(0), in Iterator() 410 U_ASSERT(index < length); in readLength() 411 U_ASSERT(array[index] >= 0x8000); in readLength() 412 return array[index++] & 0x7fff; in readLength() 414 U_ASSERT((index + 2) <= length); in readLength() 415 U_ASSERT(array[index] >= 0x8000); in readLength() 416 U_ASSERT(array[index + 1] >= 0x8000); in readLength() 418 ((int32_t)(array[index] & 0x7fff) << 15) | in readLength() 419 (array[index in readLength() [all...] |
/kernel/linux/linux-5.10/drivers/staging/rtl8723bs/hal/ |
H A D | hal_com_phycfg.c | 206 /* DBG_871X("Power index base of 2.4G path %d 1Tx CCK = > 0x%x\n", path, base); */ in phy_StoreTxPowerByRateBase() 210 /* DBG_871X("Power index base of 2.4G path %d 1Tx OFDM = > 0x%x\n", path, base); */ in phy_StoreTxPowerByRateBase() 214 /* DBG_871X("Power index base of 2.4G path %d 1Tx MCS0-7 = > 0x%x\n", path, base); */ in phy_StoreTxPowerByRateBase() 218 /* DBG_871X("Power index base of 2.4G path %d 2Tx MCS8-15 = > 0x%x\n", path, base); */ in phy_StoreTxPowerByRateBase() 222 /* DBG_871X("Power index base of 2.4G path %d 3Tx MCS16-23 = > 0x%x\n", path, base); */ in phy_StoreTxPowerByRateBase() 226 /* DBG_871X("Power index base of 2.4G path %d 1Tx VHT1SS = > 0x%x\n", path, base); */ in phy_StoreTxPowerByRateBase() 230 /* DBG_871X("Power index base of 2.4G path %d 2Tx VHT2SS = > 0x%x\n", path, base); */ in phy_StoreTxPowerByRateBase() 234 /* DBG_871X("Power index base of 2.4G path %d 3Tx VHT3SS = > 0x%x\n", path, base); */ in phy_StoreTxPowerByRateBase() 238 /* DBG_871X("Power index base of 5G path %d 1Tx OFDM = > 0x%x\n", path, base); */ in phy_StoreTxPowerByRateBase() 242 /* DBG_871X("Power index bas in phy_StoreTxPowerByRateBase() 274 u8 index = 0; PHY_GetRateSectionIndexOfTxPowerByRate() local 768 u8 index = PHY_GetRateSectionIndexOfTxPowerByRate(padapter, RegAddr, BitMask); PHY_StoreTxPowerByRateOld() local 1211 u8 index = 0; PHY_GetRateIndexOfTxPowerByRate() local [all...] |
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/patternlock/ |
H A D | patternlock_modifier.cpp | 363 auto index = (x - 1) * PATTERN_LOCK_COL_COUNT + y - 1; in PaintLockCircle() local 365 PaintCircle(canvas, offsetX, offsetY, GetBackgroundCircleRadius(index), ToRSColor(activeCircleColor)); in PaintLockCircle() 366 PaintLightRing(canvas, offsetX, offsetY, GetLightRingCircleRadius(index), GetLightRingAlphaF(index)); in PaintLockCircle() 368 CheckIsHoverAndPaint(canvas, offsetX, offsetY, GetActiveCircleRadius(index), index); in PaintLockCircle() 370 PaintCircle(canvas, offsetX, offsetY, GetActiveCircleRadius(index), ToRSColor(activeColor)); in PaintLockCircle() 373 PaintCircle(canvas, offsetX, offsetY, GetActiveCircleRadius(index), ToRSColor(pointAnimateColor)); in PaintLockCircle() 375 PaintCircle(canvas, offsetX, offsetY, GetActiveCircleRadius(index), ToRSColor(selectedColor)); in PaintLockCircle() 379 CheckIsHoverAndPaint(canvas, offsetX, offsetY, circleRadius, index); in PaintLockCircle() 384 CheckIsHoverAndPaint( RSCanvas& canvas, float offsetX, float offsetY, float radius, int32_t index) CheckIsHoverAndPaint() argument 484 auto index = (cell.GetColumn() - 1) * PATTERN_LOCK_COL_COUNT + cell.GetRow() - 1; SetCircleRadius() local 687 SetBackgroundCircleRadius(int32_t index) SetBackgroundCircleRadius() argument 722 SetActiveCircleRadius(int32_t index) SetActiveCircleRadius() argument 742 SetLightRingCircleRadius(int32_t index) SetLightRingCircleRadius() argument 763 SetLightRingAlphaF(int32_t index) SetLightRingAlphaF() argument 838 auto index = (x - 1) * PATTERN_LOCK_COL_COUNT + y - 1; StartConnectedCircleAnimate() local [all...] |
/third_party/lzma/CPP/7zip/UI/Common/ |
H A D | LoadCodecs.cpp | 226 static HRESULT GetCoderClass(Func_GetMethodProperty getMethodProperty, UInt32 index,
in GetCoderClass() argument 231 RINOK(getMethodProperty(index, propId, &prop))
in GetCoderClass() 245 static HRESULT GetMethodBoolProp(Func_GetMethodProperty getMethodProperty, UInt32 index,
in GetMethodBoolProp() argument 251 RINOK(getMethodProperty(index, propId, &prop))
in GetMethodBoolProp() 324 UInt32 index, PROPID propID, NCOM::CPropVariant &prop)
in GetProp() 327 return getProp2(index, propID, &prop);
in GetProp() 334 UInt32 index, PROPID propID, bool &res)
in GetProp_Bool() 338 RINOK(GetProp(getProp, getProp2, index, propID, prop))
in GetProp_Bool() 349 UInt32 index, PROPID propID, UInt32 &res, bool &defined)
in GetProp_UInt32() 354 RINOK(GetProp(getProp, getProp2, index, propI in GetProp_UInt32() 321 GetProp( Func_GetHandlerProperty getProp, Func_GetHandlerProperty2 getProp2, UInt32 index, PROPID propID, NCOM::CPropVariant &prop) GetProp() argument 331 GetProp_Bool( Func_GetHandlerProperty getProp, Func_GetHandlerProperty2 getProp2, UInt32 index, PROPID propID, bool &res) GetProp_Bool() argument 346 GetProp_UInt32( Func_GetHandlerProperty getProp, Func_GetHandlerProperty2 getProp2, UInt32 index, PROPID propID, UInt32 &res, bool &defined) GetProp_UInt32() argument 365 GetProp_String( Func_GetHandlerProperty getProp, Func_GetHandlerProperty2 getProp2, UInt32 index, PROPID propID, UString &res) GetProp_String() argument 380 GetProp_RawData( Func_GetHandlerProperty getProp, Func_GetHandlerProperty2 getProp2, UInt32 index, PROPID propID, CByteBuffer &bb) GetProp_RawData() argument 930 int index = FindFormatForArchiveType(name); FindFormatForArchiveType() local 979 GetProperty(UInt32 index, PROPID propID, PROPVARIANT *value) GetProperty() argument 1015 CreateDecoder(UInt32 index, const GUID *iid, void **coder) CreateDecoder() argument 1038 CreateEncoder(UInt32 index, const GUID *iid, void **coder) CreateEncoder() argument 1071 GetHasherProp(UInt32 index, PROPID propID, PROPVARIANT *value) GetHasherProp() argument 1086 CreateHasher(UInt32 index, IHasher **hasher) CreateHasher() argument 1115 GetHasherLibIndex(UInt32 index) GetHasherLibIndex() argument 1176 GetCodec_IsFilter(UInt32 index, bool &isAssigned) const GetCodec_IsFilter() argument 1207 GetCodec_NumStreams(UInt32 index) GetCodec_NumStreams() argument 1219 GetCodec_Id(UInt32 index, UInt64 &id) GetCodec_Id() argument 1229 GetCodec_Name(UInt32 index) GetCodec_Name() argument 1239 GetHasherId(UInt32 index) GetHasherId() argument 1249 GetHasherName(UInt32 index) GetHasherName() argument 1259 GetHasherDigestSize(UInt32 index) GetHasherDigestSize() argument [all...] |
/third_party/python/Modules/ |
H A D | unicodedata.c | 36 const unsigned char category; /* index into 39 const unsigned char bidirectional; /* index into 42 const unsigned char east_asian_width; /* index into 63 int index; in _getrecord_ex() local 65 index = 0; in _getrecord_ex() 67 index = index1[(code>>SHIFT)]; in _getrecord_ex() 68 index = index2[(index<<SHIFT)+(code&((1<<SHIFT)-1))]; in _getrecord_ex() 71 return &_PyUnicode_Database_Records[index]; in _getrecord_ex() 270 int index; in unicodedata_UCD_category_impl() local 297 int index; unicodedata_UCD_bidirectional_impl() local 326 int index; unicodedata_UCD_combining_impl() local 354 int index; unicodedata_UCD_mirrored_impl() local 381 int index; unicodedata_UCD_east_asian_width_impl() local 411 int code, index, count; unicodedata_UCD_decomposition_impl() local 461 get_decomp_record(PyObject *self, Py_UCS4 code, int *index, int *prefix, int *count) get_decomp_record() argument 507 int index, prefix, count, stackptr; nfd_nfkd() local 632 unsigned int index; find_nfc_index() local 653 int f,l,index,index1,comb; nfc_nfkc() local 1399 unsigned int index; unicodedata_UCD_lookup_impl() local [all...] |
/base/telephony/cellular_data/services/src/utils/ |
H A D | cellular_data_rdb_helper.cpp | 215 int index = 0; in MakePdpProfile() local 217 result->GetColumnIndex(PdpProfileData::PROFILE_ID, index); in MakePdpProfile() 218 result->GetInt(index, apnBean.profileId); in MakePdpProfile() 219 result->GetColumnIndex(PdpProfileData::PROFILE_NAME, index); in MakePdpProfile() 220 result->GetString(index, apnBean.profileName); in MakePdpProfile() 221 result->GetColumnIndex(PdpProfileData::MCC, index); in MakePdpProfile() 222 result->GetString(index, apnBean.mcc); in MakePdpProfile() 223 result->GetColumnIndex(PdpProfileData::MNC, index); in MakePdpProfile() 224 result->GetString(index, apnBean.mnc); in MakePdpProfile() 225 result->GetColumnIndex(PdpProfileData::APN, index); in MakePdpProfile() [all...] |
/kernel/linux/linux-5.10/drivers/sbus/char/ |
H A D | bbc_envctrl.c | 108 fp->index, in set_fan_speeds() 132 tp->index, in get_current_temps() 147 if (tp->curr_amb_temp >= amb_temp_limits[tp->index].high_shutdown || in do_envctrl_shutdown() 148 tp->curr_amb_temp < amb_temp_limits[tp->index].low_shutdown) { in do_envctrl_shutdown() 151 } else if (tp->curr_cpu_temp >= cpu_temp_limits[tp->index].high_shutdown || in do_envctrl_shutdown() 152 tp->curr_cpu_temp < cpu_temp_limits[tp->index].low_shutdown) { in do_envctrl_shutdown() 159 tp->index, type, val); in do_envctrl_shutdown() 175 amb_temp_limits[tp->index].high_warn) { in analyze_ambient_temp() 178 tp->index, (int) tp->curr_amb_temp); in analyze_ambient_temp() 181 amb_temp_limits[tp->index] in analyze_ambient_temp() [all...] |
/kernel/linux/linux-6.6/drivers/sbus/char/ |
H A D | bbc_envctrl.c | 108 fp->index, in set_fan_speeds() 132 tp->index, in get_current_temps() 147 if (tp->curr_amb_temp >= amb_temp_limits[tp->index].high_shutdown || in do_envctrl_shutdown() 148 tp->curr_amb_temp < amb_temp_limits[tp->index].low_shutdown) { in do_envctrl_shutdown() 151 } else if (tp->curr_cpu_temp >= cpu_temp_limits[tp->index].high_shutdown || in do_envctrl_shutdown() 152 tp->curr_cpu_temp < cpu_temp_limits[tp->index].low_shutdown) { in do_envctrl_shutdown() 159 tp->index, type, val); in do_envctrl_shutdown() 175 amb_temp_limits[tp->index].high_warn) { in analyze_ambient_temp() 178 tp->index, (int) tp->curr_amb_temp); in analyze_ambient_temp() 181 amb_temp_limits[tp->index] in analyze_ambient_temp() [all...] |
/kernel/linux/linux-6.6/drivers/perf/ |
H A D | apple_m1_cpu_pmu.c | 188 static u64 m1_pmu_read_hw_counter(unsigned int index) in m1_pmu_read_hw_counter() argument 190 switch (index) { in m1_pmu_read_hw_counter() 206 static void m1_pmu_write_hw_counter(u64 val, unsigned int index) in m1_pmu_write_hw_counter() argument 208 switch (index) { in m1_pmu_write_hw_counter() 224 #define get_bit_offset(index, mask) (__ffs(mask) + (index)) 226 static void __m1_pmu_enable_counter(unsigned int index, bool en) in __m1_pmu_enable_counter() argument 230 switch (index) { in __m1_pmu_enable_counter() 232 bit = BIT(get_bit_offset(index, PMCR0_CNT_ENABLE_0_7)); in __m1_pmu_enable_counter() 235 bit = BIT(get_bit_offset(index in __m1_pmu_enable_counter() 251 m1_pmu_enable_counter(unsigned int index) m1_pmu_enable_counter() argument 256 m1_pmu_disable_counter(unsigned int index) m1_pmu_disable_counter() argument 261 __m1_pmu_enable_counter_interrupt(unsigned int index, bool en) __m1_pmu_enable_counter_interrupt() argument 286 m1_pmu_enable_counter_interrupt(unsigned int index) m1_pmu_enable_counter_interrupt() argument 291 m1_pmu_disable_counter_interrupt(unsigned int index) m1_pmu_disable_counter_interrupt() argument 296 m1_pmu_configure_counter(unsigned int index, u8 event, bool user, bool kernel) m1_pmu_configure_counter() argument [all...] |