Home
last modified time | relevance | path

Searched refs:index (Results 6301 - 6325 of 24248) sorted by relevance

1...<<251252253254255256257258259260>>...970

/kernel/linux/linux-5.10/drivers/tty/
H A Disicom.c81 * Baud index extended to 21
178 /* baud index mappings from linux defns to isi */
195 unsigned int index; member
835 int line = tty->index; in isicom_find_port()
1335 const unsigned int index, const unsigned int signature) in load_firmware()
1405 index + 1, frame->addr, frame->count, status); in load_firmware()
1420 "Status:0x%x\n", index + 1, status); in load_firmware()
1453 index + 1, frame->addr, frame->count, status); in load_firmware()
1460 "failed, not enough memory\n", index + 1); in load_firmware()
1471 "failed\n", index in load_firmware()
1334 load_firmware(struct pci_dev *pdev, const unsigned int index, const unsigned int signature) load_firmware() argument
1517 unsigned int signature, index; isicom_probe() local
[all...]
/kernel/linux/linux-6.6/drivers/ptp/
H A Dptp_clockmatrix.c276 u8 index = rq->extts.index; in idtcm_extts_enable() local
278 u8 mask = 1 << index; in idtcm_extts_enable()
298 if (index >= MAX_TOD) in idtcm_extts_enable()
312 err = arm_tod_read_trig_sel_refclk(&idtcm->channel[index], ref); in idtcm_extts_enable()
316 idtcm->event_channel[index] = channel; in idtcm_extts_enable()
317 idtcm->channel[index].refn = ref; in idtcm_extts_enable()
477 event.index = todn; in idtcm_extts_check_channel()
1183 static int set_tod_ptp_pll(struct idtcm *idtcm, u8 index, u8 pll) in set_tod_ptp_pll() argument
1185 if (index > in set_tod_ptp_pll()
2189 configure_channel_tod(struct idtcm_channel *channel, u32 index) configure_channel_tod() argument
2230 idtcm_enable_channel(struct idtcm *idtcm, u32 index) idtcm_enable_channel() argument
2303 idtcm_enable_extts_channel(struct idtcm *idtcm, u32 index) idtcm_enable_extts_channel() argument
[all...]
/kernel/linux/linux-6.6/drivers/net/wwan/t7xx/
H A Dt7xx_hif_cldma.c63 enum mtk_txrx tx_rx, unsigned int index) in md_cd_queue_struct_reset()
66 queue->index = index; in md_cd_queue_struct_reset()
74 enum mtk_txrx tx_rx, unsigned int index) in md_cd_queue_struct_init()
76 md_cd_queue_struct_reset(queue, md_ctrl, tx_rx, index); in md_cd_queue_struct_init()
143 queue->index * sizeof(u64)); in t7xx_cldma_gpd_rx_from_q()
218 if (md_ctrl->rxq_active & BIT(queue->index)) { in t7xx_cldma_gpd_rx_collect()
219 if (!t7xx_cldma_hw_queue_status(hw_info, queue->index, MTK_RX)) in t7xx_cldma_gpd_rx_collect()
220 t7xx_cldma_hw_resume_queue(hw_info, queue->index, MTK_RX); in t7xx_cldma_gpd_rx_collect()
222 pending_rx_int = t7xx_cldma_hw_int_status(hw_info, BIT(queue->index), in t7xx_cldma_gpd_rx_collect()
62 md_cd_queue_struct_reset(struct cldma_queue *queue, struct cldma_ctrl *md_ctrl, enum mtk_txrx tx_rx, unsigned int index) md_cd_queue_struct_reset() argument
73 md_cd_queue_struct_init(struct cldma_queue *queue, struct cldma_ctrl *md_ctrl, enum mtk_txrx tx_rx, unsigned int index) md_cd_queue_struct_init() argument
[all...]
/kernel/linux/linux-6.6/drivers/hwmon/
H A Dw83791d.c191 * (index 0x4e), but the driver only accesses registers in bank 0. Since
356 int nr = sensor_attr->index; \
373 int nr = sensor_attr->index; \
434 int bitnr = sensor_attr->index; in show_beep()
446 int bitnr = sensor_attr->index; in store_beep()
480 int bitnr = sensor_attr->index; in show_alarm()
522 int nr = sensor_attr->index; \
536 int nr = sensor_attr->index; in store_fan_min()
556 int nr = sensor_attr->index; in show_fan_div()
573 int nr = sensor_attr->index; in store_fan_div()
955 int index = attr->index; show_temp23() local
969 int index = attr->index; store_temp23() local
[all...]
/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
H A DCollationTest.java125 int index = orders.length; in backAndForth()
132 if (o != orders[--index]) { in backAndForth()
134 index ++; in backAndForth()
136 while (index > 0 && orders[index] == 0) { in backAndForth()
137 index --; in backAndForth()
139 if (o != orders[index]) { in backAndForth()
140 TestFmwk.errln("Mismatch at index " + index + ": 0x" in backAndForth()
141 + Utility.hex(orders[index]) in backAndForth()
752 int index; global() field in CollationTest.RootElementsIterator
[all...]
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/collator/
H A DCollationTest.java128 int index = orders.length; in backAndForth()
135 if (o != orders[--index]) { in backAndForth()
137 index ++; in backAndForth()
139 while (index > 0 && orders[index] == 0) { in backAndForth()
140 index --; in backAndForth()
142 if (o != orders[index]) { in backAndForth()
143 TestFmwk.errln("Mismatch at index " + index + ": 0x" in backAndForth()
144 + Utility.hex(orders[index]) in backAndForth()
755 int index; global() field in CollationTest.RootElementsIterator
[all...]
/third_party/node/deps/v8/src/objects/
H A Dstring.cc648 uint32_t index; in ToArrayIndex() local
649 if (!key.AsArrayIndex(&index)) return -1; in ToArrayIndex()
650 if (index <= INT_MAX) return index; in ToArrayIndex()
694 // Fast array index case.
695 uint32_t index;
696 if (subject->AsArrayIndex(&index)) {
697 return isolate->factory()->NewNumberFromUint(index);
1207 uint32_t index = PositiveNumberToUint32(number); in ToValidIndex() local
1209 if (index > length_valu in ToValidIndex()
1234 uint32_t index = ToValidIndex(*receiver_string, *position); IndexOf() local
1673 SlowAsArrayIndex(uint32_t* index) SlowAsArrayIndex() argument
1688 SlowAsIntegerIndex(size_t* index) SlowAsIntegerIndex() argument
1766 Get( int index, PtrComprCageBase cage_base, const SharedStringAccessGuardIfNeeded& access_guard) const Get() argument
1797 Get( int index, PtrComprCageBase cage_base, const SharedStringAccessGuardIfNeeded& access_guard) const Get() argument
1803 Get( int index, PtrComprCageBase cage_base, const SharedStringAccessGuardIfNeeded& access_guard) const Get() argument
[all...]
H A Delements.cc538 // that take an entry (instead of an index) as an argument.
543 size_t index) override = 0;
603 bool HasElement(JSObject holder, uint32_t index, FixedArrayBase backing_store,
605 return Subclass::HasElementImpl(holder.GetIsolate(), holder, index,
609 static bool HasElementImpl(Isolate* isolate, JSObject holder, size_t index, in HasElementImpl() argument
612 return Subclass::GetEntryForIndexImpl(isolate, holder, backing_store, index, in HasElementImpl()
667 Maybe<bool> Add(Handle<JSObject> object, uint32_t index, Handle<Object> value,
669 return Subclass::AddImpl(object, index, value, attributes, new_capacity);
672 static Maybe<bool> AddImpl(Handle<JSObject> object, uint32_t index, in AddImpl() argument
943 Maybe<bool> GrowCapacity(Handle<JSObject> object, uint32_t index) fina
1074 uint32_t index; CollectValuesOrEntriesImpl() local
1100 uint32_t index; CollectValuesOrEntriesImpl() local
1337 GetEntryForIndexImpl(Isolate* isolate, JSObject holder, FixedArrayBase backing_store, size_t index, PropertyFilter filter) GetEntryForIndexImpl() argument
1446 Object index = dict->KeyAt(isolate, entry); global() variable
1533 AddImpl(Handle<JSObject> object, uint32_t index, Handle<Object> value, PropertyAttributes attributes, uint32_t new_capacity) AddImpl() argument
1557 Object index = dict.KeyAt(isolate, entry); HasEntryImpl() local
1561 GetEntryForIndexImpl(Isolate* isolate, JSObject holder, FixedArrayBase store, size_t index, PropertyFilter filter) GetEntryForIndexImpl() argument
1654 Handle<Object> index = isolate->factory()->NewNumberFromUint(key); DirectCollectElementIndicesImpl() local
1697 uint32_t index; IncludesValueFastPath() local
2039 AddImpl(Handle<JSObject> object, uint32_t index, Handle<Object> value, PropertyAttributes attributes, uint32_t new_capacity) AddImpl() argument
2653 AddImpl(Handle<JSObject> object, uint32_t index, Handle<Object> value, PropertyAttributes attributes, uint32_t new_capacity) AddImpl() argument
2751 AddImpl(Handle<JSObject> object, uint32_t index, Handle<Object> value, PropertyAttributes attributes, uint32_t new_capacity) AddImpl() argument
2864 AddImpl(Handle<JSObject> object, uint32_t index, Handle<Object> value, PropertyAttributes attributes, uint32_t new_capacity) AddImpl() argument
3221 HasElementImpl(Isolate* isolate, JSObject holder, size_t index, FixedArrayBase backing_store, PropertyFilter filter) HasElementImpl() argument
3245 GetEntryForIndexImpl(Isolate* isolate, JSObject holder, FixedArrayBase backing_store, size_t index, PropertyFilter filter) GetEntryForIndexImpl() argument
4506 GetEntryForIndexImpl(Isolate* isolate, JSObject holder, FixedArrayBase parameters, size_t index, PropertyFilter filter) GetEntryForIndexImpl() argument
4537 HasParameterMapArg(Isolate* isolate, SloppyArgumentsElements elements, size_t index) HasParameterMapArg() argument
4731 AddImpl(Handle<JSObject> object, uint32_t index, Handle<Object> value, PropertyAttributes attributes, uint32_t new_capacity) AddImpl() argument
4849 AddImpl(Handle<JSObject> object, uint32_t index, Handle<Object> value, PropertyAttributes attributes, uint32_t new_capacity) AddImpl() argument
4965 GetEntryForIndexImpl(Isolate* isolate, JSObject holder, FixedArrayBase backing_store, size_t index, PropertyFilter filter) GetEntryForIndexImpl() argument
4996 AddImpl(Handle<JSObject> object, uint32_t index, Handle<Object> value, PropertyAttributes attributes, uint32_t new_capacity) AddImpl() argument
[all...]
/drivers/hdf_core/framework/core/manager/include/
H A Ddevsvc_listener_holder.h18 uint64_t index; member
27 struct ServStatListenerHolder *ServStatListenerHolderGet(uint64_t index);
/foundation/arkui/ace_engine/frameworks/core/components/tab_bar/
H A Dtabs_event.h27 explicit TabContentChangeEvent(int32_t index) : BaseEventInfo("TabContentChangeEvent"), index_(index) {} in TabContentChangeEvent() argument
/foundation/arkui/ace_engine/frameworks/core/components_v2/water_flow/
H A Dwater_flow_position_controller.cpp22 int32_t index, bool /* smooth */, ScrollAlign /* align */, std::optional<float> /* extraOffset */) in ScrollToIndex()
28 waterFlow->ScrollToIndex(index); in ScrollToIndex()
21 ScrollToIndex( int32_t index, bool , ScrollAlign , std::optional<float> ) ScrollToIndex() argument
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/
H A Dsingle_ver_natural_store.h35 int index; member
38 static RegisterFuncType GetFuncType(int index, const TransPair *transMap, int32_t len);
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/drawing_ndk/include/
H A Ddrawing_typeface.h65 * @param index file index.
70 OH_Drawing_Typeface* OH_Drawing_TypefaceCreateFromFile(const char* path, int index);
116 * @param index memory stream index.
121 OH_Drawing_Typeface* OH_Drawing_TypefaceCreateFromStream(OH_Drawing_MemoryStream*, int32_t index);
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/engine_adapter/impl_interface/
H A Dfont_style_set_impl.h33 virtual Typeface* CreateTypeface(int index) = 0;
35 virtual void GetStyle(int32_t index, FontStyle* fontStyle, std::string* styleName) = 0;
/kernel/linux/linux-5.10/arch/arm/mach-imx/
H A Dcpuidle-imx5.c12 struct cpuidle_driver *drv, int index) in imx5_cpuidle_enter()
15 return index; in imx5_cpuidle_enter()
11 imx5_cpuidle_enter(struct cpuidle_device *dev, struct cpuidle_driver *drv, int index) imx5_cpuidle_enter() argument
/kernel/linux/linux-6.6/arch/arm/mach-imx/
H A Dcpuidle-imx5.c12 struct cpuidle_driver *drv, int index) in imx5_cpuidle_enter()
15 return index; in imx5_cpuidle_enter()
11 imx5_cpuidle_enter(struct cpuidle_device *dev, struct cpuidle_driver *drv, int index) imx5_cpuidle_enter() argument
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/nvkm/subdev/mmu/
H A Dg84.c38 g84_mmu_new(struct nvkm_device *device, int index, struct nvkm_mmu **pmmu) in g84_mmu_new() argument
40 return nvkm_mmu_new_(&g84_mmu, device, index, pmmu); in g84_mmu_new()
H A Dgv100.c40 gv100_mmu_new(struct nvkm_device *device, int index, struct nvkm_mmu **pmmu) in gv100_mmu_new() argument
42 return nvkm_mmu_new_(&gv100_mmu, device, index, pmmu); in gv100_mmu_new()
H A Dmcp77.c38 mcp77_mmu_new(struct nvkm_device *device, int index, struct nvkm_mmu **pmmu) in mcp77_mmu_new() argument
40 return nvkm_mmu_new_(&mcp77_mmu, device, index, pmmu); in mcp77_mmu_new()
H A Dgk104.c38 gk104_mmu_new(struct nvkm_device *device, int index, struct nvkm_mmu **pmmu) in gk104_mmu_new() argument
40 return nvkm_mmu_new_(&gk104_mmu, device, index, pmmu); in gk104_mmu_new()
H A Dgk20a.c38 gk20a_mmu_new(struct nvkm_device *device, int index, struct nvkm_mmu **pmmu) in gk20a_mmu_new() argument
40 return nvkm_mmu_new_(&gk20a_mmu, device, index, pmmu); in gk20a_mmu_new()
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/nvkm/subdev/mc/
H A Dnv11.c47 nv11_mc_new(struct nvkm_device *device, int index, struct nvkm_mc **pmc) in nv11_mc_new() argument
49 return nvkm_mc_new_(&nv11_mc, device, index, pmc); in nv11_mc_new()
/kernel/linux/linux-5.10/drivers/media/pci/cx25821/
H A Dcx25821-biffuncs.h14 static inline u8 getBit(u32 sample, u8 index) in getBit() argument
16 return (u8) ((sample >> index) & 1); in getBit()
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/nvkm/engine/mspdec/
H A Dg98.c46 g98_mspdec_new(struct nvkm_device *device, int index, in g98_mspdec_new() argument
49 return nvkm_mspdec_new_(&g98_mspdec, device, index, pengine); in g98_mspdec_new()
H A Dgf100.c46 gf100_mspdec_new(struct nvkm_device *device, int index, in gf100_mspdec_new() argument
49 return nvkm_mspdec_new_(&gf100_mspdec, device, index, pengine); in gf100_mspdec_new()

Completed in 25 milliseconds

1...<<251252253254255256257258259260>>...970