| /OK3568_Linux_fs/kernel/ipc/ |
| H A D | util.c | 38 * The ids->rwsem must be taken when: 75 int ids; member 109 * @ids: ipc identifier set 112 * below ipc_mni) then initialise the keys hashtable and ids idr. 114 void ipc_init_ids(struct ipc_ids *ids) in ipc_init_ids() argument 116 ids->in_use = 0; in ipc_init_ids() 117 ids->seq = 0; in ipc_init_ids() 118 init_rwsem(&ids->rwsem); in ipc_init_ids() 119 rhashtable_init(&ids->key_ht, &ipc_kht_params); in ipc_init_ids() 120 idr_init(&ids->ipcs_idr); in ipc_init_ids() [all …]
|
| H A D | util.h | 115 void ipc_init_ids(struct ipc_ids *ids); 118 int ids, int (*show)(struct seq_file *, void *)); 121 #define ipc_init_proc_interface(path, header, ids, show) do {} while (0) argument 132 /* must be called with ids->rwsem acquired for writing */ 146 * @ids: ipc identifier set 150 static inline int ipc_get_maxidx(struct ipc_ids *ids) in ipc_get_maxidx() argument 152 if (ids->in_use == 0) in ipc_get_maxidx() 155 if (ids->in_use == ipc_mni) in ipc_get_maxidx() 158 return ids->max_idx; in ipc_get_maxidx() 174 struct kern_ipc_perm *ipc_obtain_object_idr(struct ipc_ids *ids, int id); [all …]
|
| /OK3568_Linux_fs/kernel/arch/arm/boot/dts/ |
| H A D | imx28.dtsi | 220 fsl,pinmux-ids = < 231 fsl,pinmux-ids = < 242 fsl,pinmux-ids = < 255 fsl,pinmux-ids = < 279 fsl,pinmux-ids = < 289 fsl,pinmux-ids = < 302 fsl,pinmux-ids = < 313 fsl,pinmux-ids = < 326 fsl,pinmux-ids = < 337 fsl,pinmux-ids = < [all …]
|
| H A D | imx23.dtsi | 146 fsl,pinmux-ids = < 157 fsl,pinmux-ids = < 170 fsl,pinmux-ids = < 181 fsl,pinmux-ids = < 192 fsl,pinmux-ids = < 218 fsl,pinmux-ids = < 228 fsl,pinmux-ids = < 243 fsl,pinmux-ids = < 263 fsl,pinmux-ids = < 272 fsl,pinmux-ids = < [all …]
|
| H A D | imx28-cfa10049.dts | 86 fsl,pinmux-ids = < 96 fsl,pinmux-ids = < 107 fsl,pinmux-ids = < 117 fsl,pinmux-ids = < 127 fsl,pinmux-ids = < 138 fsl,pinmux-ids = < 148 fsl,pinmux-ids = < 161 fsl,pinmux-ids = < 175 fsl,pinmux-ids = < 202 fsl,pinmux-ids = < [all …]
|
| /OK3568_Linux_fs/kernel/drivers/dio/ |
| H A D | dio-driver.c | 20 * @ids: array of DIO device id structures to search in 29 dio_match_device(const struct dio_device_id *ids, in dio_match_device() argument 32 while (ids->id) { in dio_match_device() 33 if (ids->id == DIO_WILDCARD) in dio_match_device() 34 return ids; in dio_match_device() 35 if (DIO_NEEDSSECID(ids->id & 0xff)) { in dio_match_device() 36 if (ids->id == d->id) in dio_match_device() 37 return ids; in dio_match_device() 39 if ((ids->id & 0xff) == (d->id & 0xff)) in dio_match_device() 40 return ids; in dio_match_device() [all …]
|
| /OK3568_Linux_fs/kernel/net/openvswitch/ |
| H A D | vport.c | 327 * @ids: new configuration, an array of port ids. 329 * Sets the vport's upcall_portids to @ids. 331 * Returns 0 if successful, -EINVAL if @ids is zero length or cannot be parsed 336 int ovs_vport_set_upcall_portids(struct vport *vport, const struct nlattr *ids) in ovs_vport_set_upcall_portids() argument 340 if (!nla_len(ids) || nla_len(ids) % sizeof(u32)) in ovs_vport_set_upcall_portids() 345 vport_portids = kmalloc(sizeof(*vport_portids) + nla_len(ids), in ovs_vport_set_upcall_portids() 350 vport_portids->n_ids = nla_len(ids) / sizeof(u32); in ovs_vport_set_upcall_portids() 352 nla_memcpy(vport_portids->ids, ids, nla_len(ids)); in ovs_vport_set_upcall_portids() 378 struct vport_portids *ids; in ovs_vport_get_upcall_portids() local 380 ids = rcu_dereference_ovsl(vport->upcall_portids); in ovs_vport_get_upcall_portids() [all …]
|
| /OK3568_Linux_fs/kernel/drivers/regulator/ |
| H A D | stpmic1_regulator.c | 197 #define REG_LDO(ids, base) { \ argument 198 .name = #ids, \ 199 .id = STPMIC1_##ids, \ 206 .vsel_reg = ids##_ACTIVE_CR, \ 208 .enable_reg = ids##_ACTIVE_CR, \ 217 #define REG_LDO3(ids, base) { \ argument 218 .name = #ids, \ 219 .id = STPMIC1_##ids, \ 241 #define REG_LDO4(ids, base) { \ argument 242 .name = #ids, \ [all …]
|
| H A D | max8907-regulator.c | 46 #define REG_LDO(ids, supply, base, min, max, step) \ argument 47 [MAX8907_##ids] = { \ 48 .name = #ids, \ 50 .id = MAX8907_##ids, \ 63 #define REG_FIXED(ids, supply, voltage) \ argument 64 [MAX8907_##ids] = { \ 65 .name = #ids, \ 67 .id = MAX8907_##ids, \ 75 #define REG_OUT5V(ids, supply, base, voltage) \ argument 76 [MAX8907_##ids] = { \ [all …]
|
| /OK3568_Linux_fs/kernel/drivers/pci/ |
| H A D | pci-stub.c | 22 static char ids[1024] __initdata; variable 24 module_param_string(ids, ids, sizeof(ids), 0); 25 MODULE_PARM_DESC(ids, "Initial PCI IDs to add to the stub driver, format is " 50 /* no ids passed actually */ in pci_stub_init() 51 if (ids[0] == '\0') in pci_stub_init() 54 /* add ids specified in the module parameter */ in pci_stub_init() 55 p = ids; in pci_stub_init()
|
| /OK3568_Linux_fs/kernel/drivers/zorro/ |
| H A D | zorro-driver.c | 23 * @ids: array of Zorro device id structures to search in 32 zorro_match_device(const struct zorro_device_id *ids, in zorro_match_device() argument 35 while (ids->id) { in zorro_match_device() 36 if (ids->id == ZORRO_WILDCARD || ids->id == z->id) in zorro_match_device() 37 return ids; in zorro_match_device() 38 ids++; in zorro_match_device() 119 * @ids: array of Zorro device id structures to search in 131 const struct zorro_device_id *ids = zorro_drv->id_table; in zorro_bus_match() local 133 if (!ids) in zorro_bus_match() 136 return !!zorro_match_device(ids, z); in zorro_bus_match()
|
| /OK3568_Linux_fs/kernel/tools/perf/util/ |
| H A D | metricgroup.c | 138 static struct expr_id *expr_ids__alloc(struct expr_ids *ids) in expr_ids__alloc() argument 140 if (ids->cnt >= RECURSION_ID_MAX) in expr_ids__alloc() 142 return &ids->id[ids->cnt++]; in expr_ids__alloc() 145 static void expr_ids__exit(struct expr_ids *ids) in expr_ids__exit() argument 149 for (i = 0; i < ids->cnt; i++) in expr_ids__exit() 150 free(ids->id[i].id); in expr_ids__exit() 193 const int idnum = (int)hashmap__size(&pctx->ids); in find_evsel_group() 201 hashmap__find(&pctx->ids, "duration_time", (void **)&val_ptr)) in find_evsel_group() 237 if (hashmap__find(&pctx->ids, ev->name, (void **)&val_ptr)) in find_evsel_group() 316 hashmap__size(&m->pctx.ids) + 1); in metricgroup__setup_events() [all …]
|
| /OK3568_Linux_fs/kernel/Documentation/RCU/ |
| H A D | arrayRCU.rst | 62 to map from semaphore, message-queue, and shared-memory IDs to the data 65 ids->sem semaphore. 69 the remainder of the new, updates the ids->entries pointer to point to 71 Note that rcu_assign_pointer() is used to update the ids->entries pointer, 75 static int grow_ary(struct ipc_ids* ids, int newsize) 80 int size = ids->entries->size; 92 memcpy(new->p, ids->entries->p, 98 old = ids->entries; 105 rcu_assign_pointer(ids->entries, new); 127 struct kern_ipc_perm* ipc_lock(struct ipc_ids* ids, int id) [all …]
|
| /OK3568_Linux_fs/buildroot/package/hwdata/ |
| H A D | Config.in | 22 bool "install pci.ids" 25 Install pci.ids 28 bool "install pnp.ids" 30 Install pnp.ids 33 bool "install usb.ids" 36 Install usb.ids
|
| /OK3568_Linux_fs/u-boot/arch/arm/include/asm/arch-fsl-layerscape/ |
| H A D | stream_id_lsch3.h | 11 * Stream IDs on NXP Chassis-3 (for example ls2080a, ls1088a, ls2088a) 13 * number of stream IDs available, and the partitioning of them is scenario 25 * -there is a range of stream IDs set aside for PCI in this 37 * -u-boot will allocate a range of stream IDs to be used by the Management 40 * IDs (ICIDs) based on the allocated stream IDs for all DPAA2 devices. 42 * On Chasis-3 SoCs stream IDs are programmed in AMQ registers (32-bits) for 44 * the AMQ registers and stream IDs is defined in the table below:
|
| /OK3568_Linux_fs/app/forlinx/DWKeyboard/include/pinyin/include/ |
| H A D | searchutility.h | 65 // id_num = number of ids starting with 'w'. 67 // splid_end_split = false; id_start = wa; id_num = number of ids starting with 75 // Spelling ids for extending, there are splids_extended + 1 ids in the 77 // For a normal lemma, there can only be kMaxLemmaSize spelling ids in max, 78 // but for a composing phrase, there can kMaxSearchSteps spelling ids. 81 // Number of ids that have been used before. splids[splids_extended] is the 90 // in the input Pinyin string for the substring of spelling ids in splids[]. 102 // corresponding full ids; if the newly added id is a full id, id_start is 107 // ids; if it is a full id, id_num == 1.
|
| /OK3568_Linux_fs/app/forlinx/flapp/src/keyboard/pinyin/include/ |
| H A D | searchutility.h | 65 // id_num = number of ids starting with 'w'. 67 // splid_end_split = false; id_start = wa; id_num = number of ids starting with 75 // Spelling ids for extending, there are splids_extended + 1 ids in the 77 // For a normal lemma, there can only be kMaxLemmaSize spelling ids in max, 78 // but for a composing phrase, there can kMaxSearchSteps spelling ids. 81 // Number of ids that have been used before. splids[splids_extended] is the 90 // in the input Pinyin string for the substring of spelling ids in splids[]. 102 // corresponding full ids; if the newly added id is a full id, id_start is 107 // ids; if it is a full id, id_num == 1.
|
| /OK3568_Linux_fs/kernel/Documentation/driver-api/usb/ |
| H A D | bulk-streams.rst | 38 allocate memory so the driver can use up to num_streams stream IDs. They must 40 IDs. This is to ensure that a UASP driver will be able to use the same stream 46 declares how many stream IDs it can support, and each bulk endpoint on a 47 SuperSpeed device will say how many stream IDs it can handle. Therefore, 48 drivers should be able to deal with being allocated less stream IDs than they 60 Picking new Stream IDs to use 69 driver supports secondary stream IDs. 82 All stream IDs will be deallocated when the driver releases the interface, to
|
| /OK3568_Linux_fs/kernel/Documentation/core-api/ |
| H A D | idr.rst | 12 A common problem to solve is allocating identifiers (IDs); generally 14 process IDs, packet identifiers in networking protocols, SCSI tags 37 Some users need to allocate IDs larger than ``INT_MAX``. So far all of 39 idr_alloc_u32(). If you need IDs that will not fit in a u32, 42 If you need to allocate IDs sequentially, you can use 44 with larger IDs, so using this function comes at a slight cost. 58 IDs currently allocated.
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/overlay/ |
| H A D | handle_colocations.hpp | 360 std::set<signed_size_type>& ids = cinfo.turn_indices; in cleanup_clusters() local 361 for (std::set<signed_size_type>::iterator sit = ids.begin(); in cleanup_clusters() 362 sit != ids.end(); /* no increment */) in cleanup_clusters() 370 ids.erase(current_it); in cleanup_clusters() 379 inline void discard_ie_turn(Turn& turn, IdSet& ids, signed_size_type id) in discard_ie_turn() argument 385 ids.insert(id); in discard_ie_turn() 455 std::set<signed_size_type>& ids = cinfo.turn_indices; in discard_interior_exterior_turns() local 459 for (set_iterator it = ids.begin(); it != ids.end(); ++it) in discard_interior_exterior_turns() 472 for (set_iterator int_it = ids.begin(); int_it != ids.end(); ++int_it) in discard_interior_exterior_turns() 495 // Erase from the ids (which cannot be done above) in discard_interior_exterior_turns() [all …]
|
| /OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/kdbush/0.1.1-1/include/ |
| H A D | kdbush.hpp | 55 ids.reserve(size); in fill() 60 ids.push_back(i++); in fill() 72 range(minX, minY, maxX, maxY, visitor, 0, static_cast<TIndex>(ids.size() - 1), 0); in range() 77 within(qx, qy, r, visitor, 0, static_cast<TIndex>(ids.size() - 1), 0); in within() 81 std::vector<TIndex> ids; member in kdbush::KDBush 99 if (x >= minX && x <= maxX && y >= minY && y <= maxY) visitor(ids[i]); in range() 108 if (x >= minX && x <= maxX && y >= minY && y <= maxY) visitor(ids[m]); in range() 132 if (sqDist(x, y, qx, qy) <= r2) visitor(ids[i]); in within() 141 if (sqDist(x, y, qx, qy) <= r2) visitor(ids[m]); in within() 201 std::iter_swap(ids.begin() + i, ids.begin() + j); in swapItem()
|
| /OK3568_Linux_fs/yocto/poky/meta/recipes-bsp/pciutils/ |
| H A D | pciutils_3.7.0.bb | 54 PACKAGES =+ "${PN}-ids libpci" 55 FILES:${PN}-ids = "${datadir}/pci.ids*" 57 SUMMARY:${PN}-ids = "PCI utilities - device ID database" 58 DESCRIPTION:${PN}-ids = "Package providing the PCI device ID database for pciutils." 59 RDEPENDS:${PN} += "${PN}-ids"
|
| /OK3568_Linux_fs/kernel/drivers/net/ethernet/mellanox/mlx5/core/diag/ |
| H A D | en_tc_tracepoint.h | 15 #define __parse_action(ids, num) parse_action(p, ids, num) argument 17 void put_ids_to_array(int *ids, 22 int *ids, 30 __dynamic_array(int, ids, f->rule ? 37 put_ids_to_array(__get_dynamic_array(ids), 43 __parse_action(__get_dynamic_array(ids),
|
| /OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/clock/ |
| H A D | mvebu-core-clock.txt | 7 The following is a list of provided IDs and clock names on Armada 370/XP: 14 The following is a list of provided IDs and clock names on Armada 375: 20 The following is a list of provided IDs and clock names on Armada 380/385: 26 The following is a list of provided IDs and clock names on Armada 39x: 34 The following is a list of provided IDs and clock names on 98dx3236: 40 The following is a list of provided IDs and clock names on Kirkwood and Dove: 46 The following is a list of provided IDs and clock names on Orion5x:
|
| /OK3568_Linux_fs/external/rknpu2/examples/rknn_yolov5_android_apk_demo/app/src/main/java/com/rockchip/gpadc/demo/ |
| H A D | InferenceResult.java | 159 public int[] ids; field in InferenceResult.DetectResultGroup 172 // int count, int[] ids, float[] scores, float[] boxes 175 // this.ids = ids; 189 // return ids; 192 // public void setIds(int[] ids) { 193 // this.ids = ids;
|