/openbmc/linux/tools/testing/selftests/riscv/hwprobe/ |
H A D | hwprobe.c | 10 long riscv_hwprobe(struct riscv_hwprobe *pairs, size_t pair_count, 15 struct riscv_hwprobe pairs[8]; in main() local 23 * Just run a basic test: pass enough pairs to get up to the base in main() 27 pairs[i].key = i; in main() 28 out = riscv_hwprobe(pairs, 8, 1, &cpus, 0); in main() 33 if ((i < 4) && (pairs[i].key != i)) in main() 36 if (pairs[i].key != RISCV_HWPROBE_KEY_BASE_BEHAVIOR) in main() 39 if (pairs[i].value & RISCV_HWPROBE_BASE_BEHAVIOR_IMA) in main() 49 out = riscv_hwprobe(pairs, 8, 0, 0, 0); in main() 53 out = riscv_hwprobe(pairs, 8, 0, &cpus, 0); in main() [all …]
|
/openbmc/linux/arch/riscv/kernel/vdso/ |
H A D | hwprobe.c | 10 extern int riscv_hwprobe(struct riscv_hwprobe *pairs, size_t pair_count, 15 int __vdso_riscv_hwprobe(struct riscv_hwprobe *pairs, size_t pair_count, 19 int __vdso_riscv_hwprobe(struct riscv_hwprobe *pairs, size_t pair_count, in __vdso_riscv_hwprobe() argument 26 struct riscv_hwprobe *p = pairs; in __vdso_riscv_hwprobe() 27 struct riscv_hwprobe *end = pairs + pair_count; in __vdso_riscv_hwprobe() 36 return riscv_hwprobe(pairs, pair_count, cpu_count, cpus, flags); in __vdso_riscv_hwprobe() 38 /* This is something we can handle, fill out the pairs. */ in __vdso_riscv_hwprobe()
|
/openbmc/linux/net/netfilter/ipset/ |
H A D | Kconfig | 42 can store IPv4 address and (source) MAC address pairs from a range. 70 can store IPv4/IPv6 address and mark pairs. 79 can store IPv4/IPv6 address and protocol/port pairs. 108 one can store IPv4/IPv6 address and MAC (ethernet address) pairs in a set. 144 one can store IPv4/IPv6 network address/prefix pairs in a set. 154 protocol/port pairs as elements in a set. 164 interface name pairs as elements in a set.
|
/openbmc/linux/Documentation/locking/ |
H A D | locktorture.rst | 53 spin_lock() and spin_unlock() pairs. 56 spin_lock_irq() and spin_unlock_irq() pairs. 59 read/write lock() and unlock() rwlock pairs. 63 rwlock pairs. 66 mutex_lock() and mutex_unlock() pairs. 69 rtmutex_lock() and rtmutex_unlock() pairs. 73 read/write down() and up() semaphore pairs.
|
/openbmc/linux/arch/mips/include/asm/ |
H A D | maar.h | 15 * @num_pairs: The number of MAAR pairs present in the system. 18 * MAAR pairs as required, from 0 up to the maximum of num_pairs-1, and returns 21 * that it has configured 0 MAAR pairs. 23 * Return: The number of MAAR pairs configured. 109 * @num_pairs: The number of MAAR pairs present in the system. 114 * Return: The number of MAAR pairs configured.
|
/openbmc/libcper/sections/ |
H A D | cper-section-pci-dev.c | 55 //Number of following register data pairs. in cper_section_pci_dev_to_ir() 62 //Register pairs, described by the numeric fields. in cper_section_pci_dev_to_ir() 63 …//The actual "pairs" of address and data aren't necessarily 8 bytes long, so can't assume the cont… in cper_section_pci_dev_to_ir() 119 //Amount of following data pairs. in ir_section_pci_dev_to_cper() 130 //Begin writing register pairs. in ir_section_pci_dev_to_cper()
|
/openbmc/u-boot/include/dm/ |
H A D | fdtaddr.h | 49 * @index: the 'reg' property can hold a list of <addr, size> pairs 61 * @name: the 'reg' property can hold a list of <addr, size> pairs, with the 88 * @index: the 'reg' property can hold a list of <addr, size> pairs 101 * @index: the 'reg' property can hold a list of <addr, size> pairs 115 * @name: the 'reg' property can hold a list of <addr, size> pairs, with the
|
/openbmc/linux/tools/perf/util/ |
H A D | sort.h | 96 } pairs; member 177 return !list_empty(&he->pairs.node); in hist_entry__has_pairs() 183 return list_entry(he->pairs.node.next, struct hist_entry, pairs.node); in hist_entry__next_pair() 190 list_add_tail(&pair->pairs.node, &he->pairs.head); in hist_entry__add_pair()
|
/openbmc/linux/lib/livepatch/ |
H A D | test_klp_shadow_vars.c | 254 /* pass 4: free <objs[*], SV_ID1> pairs of svars, verify removal */ in test_klp_shadow_vars_init() 256 shadow_free(&objs[i], SV_ID1, shadow_dtor); /* 'char' pairs */ in test_klp_shadow_vars_init() 262 /* pass 5: check we still find <objs[*], SV_ID2> svar pairs */ in test_klp_shadow_vars_init() 264 sv = shadow_get(&objs[i], SV_ID2); /* 'int' pairs */ in test_klp_shadow_vars_init() 274 /* pass 6: free all the <objs[*], SV_ID2> svar pairs too. */ in test_klp_shadow_vars_init() 275 shadow_free_all(SV_ID2, NULL); /* 'int' pairs */ in test_klp_shadow_vars_init() 286 shadow_free_all(SV_ID1, NULL); /* 'char' pairs */ in test_klp_shadow_vars_init() 287 shadow_free_all(SV_ID2, NULL); /* 'int' pairs */ in test_klp_shadow_vars_init()
|
/openbmc/linux/arch/riscv/kernel/ |
H A D | sys_riscv.c | 230 static int do_riscv_hwprobe(struct riscv_hwprobe __user *pairs, in do_riscv_hwprobe() argument 268 for (out = 0; out < pair_count; out++, pairs++) { in do_riscv_hwprobe() 271 if (get_user(pair.key, &pairs->key)) in do_riscv_hwprobe() 276 ret = put_user(pair.key, &pairs->key); in do_riscv_hwprobe() 278 ret = put_user(pair.value, &pairs->value); in do_riscv_hwprobe() 331 SYSCALL_DEFINE5(riscv_hwprobe, struct riscv_hwprobe __user *, pairs, in SYSCALL_DEFINE5() argument 335 return do_riscv_hwprobe(pairs, pair_count, cpu_count, in SYSCALL_DEFINE5()
|
/openbmc/linux/Documentation/devicetree/bindings/usb/ |
H A D | hisilicon,histb-xhci.txt | 9 - clocks: a list of phandle + clock-specifier pairs, one for each 16 - resets: a list of phandle and reset specifier pairs as listed in 20 - phys: a list of phandle + phy specifier pairs
|
/openbmc/linux/Documentation/ABI/testing/ |
H A D | sysfs-uevent | 18 You need to pass UUID first before any KEY=VALUE pairs. 31 The KEY=VALUE pairs can contain alphanumeric characters only. 33 It's possible to define zero or more pairs - each pair is then
|
/openbmc/linux/drivers/media/platform/amphion/ |
H A D | vpu_helpers.c | 422 int vpu_find_dst_by_src(struct vpu_pair *pairs, u32 cnt, u32 src) in vpu_find_dst_by_src() argument 426 if (!pairs || !cnt) in vpu_find_dst_by_src() 430 if (pairs[i].src == src) in vpu_find_dst_by_src() 431 return pairs[i].dst; in vpu_find_dst_by_src() 437 int vpu_find_src_by_dst(struct vpu_pair *pairs, u32 cnt, u32 dst) in vpu_find_src_by_dst() argument 441 if (!pairs || !cnt) in vpu_find_src_by_dst() 445 if (pairs[i].dst == dst) in vpu_find_src_by_dst() 446 return pairs[i].src; in vpu_find_src_by_dst()
|
/openbmc/witherspoon-pfault-analysis/ |
H A D | names_values.hpp | 16 * Builds up a string of name=value pairs for use in 93 * break up the name/value pairs 104 * The string containing all name/value pairs
|
/openbmc/phosphor-power/ |
H A D | names_values.hpp | 16 * Builds up a string of name=value pairs for use in 93 * break up the name/value pairs 104 * The string containing all name/value pairs
|
/openbmc/linux/drivers/media/dvb-core/ |
H A D | dvb_ringbuffer.c | 55 * this pairs with smp_store_release() in dvb_ringbuffer_write(), in dvb_ringbuffer_empty() 70 * this pairs with smp_store_release() in dvb_ringbuffer_read(), in dvb_ringbuffer_free() 87 * this pairs with smp_store_release() in dvb_ringbuffer_write(), in dvb_ringbuffer_avail() 146 * this pairs with READ_ONCE() in dvb_ringbuffer_free() in dvb_ringbuffer_read_user() 171 * this pairs with READ_ONCE() in dvb_ringbuffer_free() in dvb_ringbuffer_read() 195 * update, this pairs with smp_load_acquire() in in dvb_ringbuffer_write() 224 * update, this pairs with smp_load_acquire() in in dvb_ringbuffer_write_user()
|
/openbmc/linux/drivers/gpu/drm/vmwgfx/ |
H A D | vmwgfx_devcaps.c | 35 SVGA3dFifoCapPair pairs[SVGA3D_DEVCAP_MAX]; member 61 size_t pair_offset = offsetof(struct svga_3d_compat_cap, pairs); in vmw_fill_compat_cap() 77 compat_cap->pairs[i][0] = i; in vmw_fill_compat_cap() 78 compat_cap->pairs[i][1] = vmw_mask_legacy_multisample in vmw_fill_compat_cap()
|
/openbmc/linux/include/media/ |
H A D | v4l2-cci.h | 23 * Register/value pairs for sequences of writes. 101 * @regs: Array of structures containing register-address, -value pairs to be 108 * pairs are supplied in any order, possibly not all in a single range. 112 * For raw lists of register-address, -value pairs with only 8 bit
|
/openbmc/linux/lib/ |
H A D | stackdepot.c | 227 * smp_load_acquire() here pairs with smp_store_release() below and in depot_init_pool() 251 * This smp_store_release pairs with smp_load_acquire() above in depot_init_pool() 277 * WRITE_ONCE pairs with potential concurrent read in in depot_alloc_stack() 285 * smp_store_release() here pairs with smp_load_acquire() in in depot_alloc_stack() 387 * The smp_load_acquire() here pairs with smp_store_release() to in __stack_depot_save() 398 * The smp_load_acquire() here pairs with smp_store_release() to in __stack_depot_save() 425 * This smp_store_release() pairs with in __stack_depot_save() 465 * READ_ONCE pairs with potential concurrent write in in stack_depot_fetch()
|
/openbmc/linux/Documentation/devicetree/bindings/sound/ |
H A D | sirf-audio-port.txt | 6 - dmas: List of DMA controller phandle and DMA request line ordered pairs. 8 These strings correspond 1:1 with the ordered pairs in dmas.
|
H A D | brcm,bcm2835-i2s.txt | 7 - dmas: List of DMA controller phandle and DMA request line ordered pairs. 9 These strings correspond 1:1 with the ordered pairs in dmas.
|
H A D | sprd-pcm.txt | 5 - dmas: Specify the list of DMA controller phandle and DMA request line ordered pairs. 7 These strings correspond 1:1 with the ordered pairs in dmas.
|
/openbmc/linux/fs/ntfs/ |
H A D | runlist.c | 708 * ntfs_mapping_pairs_decompress - convert mapping pairs array to runlist 710 * @attr: attribute record whose mapping pairs array to decompress 715 * Decompress the attribute @attr's mapping pairs array into a runlist. On 742 u8 *buf; /* Current position in mapping pairs array. */ in ntfs_mapping_pairs_decompress() 760 /* Get start of the mapping pairs array. */ in ntfs_mapping_pairs_decompress() 768 /* If the mapping pairs array is valid but empty, nothing to do. */ in ntfs_mapping_pairs_decompress() 820 "pairs array."); in ntfs_mapping_pairs_decompress() 828 ntfs_error(vol->sb, "Invalid length in mapping pairs " in ntfs_mapping_pairs_decompress() 874 "mapping pairs array."); in ntfs_mapping_pairs_decompress() 894 ntfs_error(vol->sb, "Corrupt mapping pairs array in " in ntfs_mapping_pairs_decompress() [all …]
|
/openbmc/openbmc/poky/documentation/dev-manual/ |
H A D | build-quality.rst | 79 pairs with information about the package. For example, 100 name-value pairs correspond to variables used to produce the package. 213 - ``image-info.txt:`` A text file containing name-value pairs with 251 name-value pairs are variables that may have influenced the content of 288 - ``sdk-info.txt:`` A text file containing name-value pairs with 292 - ``sstate-task-sizes.txt:`` A text file containing name-value pairs 297 - ``sstate-package-sizes.txt:`` A text file containing name-value pairs 349 the total size of the files in the SDK in Kbytes, the name-value pairs
|
/openbmc/linux/Documentation/admin-guide/ |
H A D | bootconfig.rst | 233 passing the kernel parameters. All the key-value pairs under ``kernel`` 235 pairs under ``init`` will be passed to init process via the cmdline. 272 up to 512 key-value pairs. If keys contains 3 words in average, it can 273 contain 256 key-value pairs. In most cases, the number of config items 285 User can query or loop on key-value pairs, also it is possible to find 290 config, you can use xbc_for_each_key_value() to iterate key-value pairs.
|