/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/ |
H A D | RISCVInstructionSelector.cpp | 37 bool select(MachineInstr &I) override; 83 bool RISCVInstructionSelector::select(MachineInstr &I) { in select() function in RISCVInstructionSelector
|
/third_party/openssl/test/ |
H A D | tls-provider.c | 660 static int xor_import(void *vkey, int select, const OSSL_PARAM params[]) in xor_import() argument 670 if (key == NULL || (select & OSSL_KEYMGMT_SELECT_KEYPAIR) == 0) in xor_import() 699 static int xor_export(void *vkey, int select, OSSL_CALLBACK *param_cb, in xor_export() argument 705 if (key == NULL || (select & OSSL_KEYMGMT_SELECT_KEYPAIR) == 0) in xor_export() 724 static const OSSL_PARAM *xor_import_types(int select) in xor_import_types() argument 726 return (select & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0 ? xor_key_types : NULL; in xor_import_types() 729 static const OSSL_PARAM *xor_export_types(int select) in xor_export_types() argument 731 return (select & OSSL_KEYMGMT_SELECT_KEYPAIR) != 0 ? xor_key_types : NULL; in xor_export_types()
|
/kernel/linux/linux-5.10/net/batman-adv/ |
H A D | distributed-arp-table.c | 502 * @select: number of already selected candidates 513 int select, batadv_dat_addr_t tmp_max, in batadv_is_orig_node_eligible() 527 for (j = 0; j < select; j++) in batadv_is_orig_node_eligible() 531 if (j < select) in batadv_is_orig_node_eligible() 554 * batadv_choose_next_candidate() - select the next DHT candidate 557 * @select: number of candidates already present in the array 563 int select, batadv_dat_addr_t ip_key, in batadv_choose_next_candidate() 576 cands[select].type = BATADV_DAT_CANDIDATE_NOT_FOUND; in batadv_choose_next_candidate() 590 if (!batadv_is_orig_node_eligible(cands, select, in batadv_choose_next_candidate() 607 cands[select] in batadv_choose_next_candidate() 512 batadv_is_orig_node_eligible(struct batadv_dat_candidate *res, int select, batadv_dat_addr_t tmp_max, batadv_dat_addr_t max, batadv_dat_addr_t last_max, struct batadv_orig_node *candidate, struct batadv_orig_node *max_orig_node) batadv_is_orig_node_eligible() argument 561 batadv_choose_next_candidate(struct batadv_priv *bat_priv, struct batadv_dat_candidate *cands, int select, batadv_dat_addr_t ip_key, batadv_dat_addr_t *last_max) batadv_choose_next_candidate() argument 634 int select; batadv_dat_select_candidates() local [all...] |
/kernel/linux/linux-6.6/net/batman-adv/ |
H A D | distributed-arp-table.c | 500 * @select: number of already selected candidates 511 int select, batadv_dat_addr_t tmp_max, in batadv_is_orig_node_eligible() 525 for (j = 0; j < select; j++) in batadv_is_orig_node_eligible() 529 if (j < select) in batadv_is_orig_node_eligible() 552 * batadv_choose_next_candidate() - select the next DHT candidate 555 * @select: number of candidates already present in the array 561 int select, batadv_dat_addr_t ip_key, in batadv_choose_next_candidate() 574 cands[select].type = BATADV_DAT_CANDIDATE_NOT_FOUND; in batadv_choose_next_candidate() 588 if (!batadv_is_orig_node_eligible(cands, select, in batadv_choose_next_candidate() 604 cands[select] in batadv_choose_next_candidate() 510 batadv_is_orig_node_eligible(struct batadv_dat_candidate *res, int select, batadv_dat_addr_t tmp_max, batadv_dat_addr_t max, batadv_dat_addr_t last_max, struct batadv_orig_node *candidate, struct batadv_orig_node *max_orig_node) batadv_is_orig_node_eligible() argument 559 batadv_choose_next_candidate(struct batadv_priv *bat_priv, struct batadv_dat_candidate *cands, int select, batadv_dat_addr_t ip_key, batadv_dat_addr_t *last_max) batadv_choose_next_candidate() argument 631 int select; batadv_dat_select_candidates() local [all...] |
/third_party/python/Lib/ |
H A D | pty.py | 9 from select import select namespace 161 rfds, wfds, _xfds = select(rfds, wfds, [])
|
/third_party/python/Lib/test/ |
H A D | test_file_eintr.py | 12 import select namespace 122 rlist, _, _ = select.select([self._process.stderr], (), (), 0.05)
|
H A D | test_pty.py | 15 import select namespace 308 self.orig_pty_select = pty.select 325 pty.select = self.orig_pty_select 377 # Expect three select calls, the last one will cause IndexError 378 pty.select = self._mock_select 389 rfds = select.select([read_from_stdout_fd, masters[1]], [], [], 0)[0]
|
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/display/dc/dcn10/ |
H A D | dcn10_dpp_cm.c | 94 enum gamut_remap_select select) in program_gamut_remap() 99 if (regval == NULL || select == GAMUT_REMAP_BYPASS) { in program_gamut_remap() 104 switch (select) { in program_gamut_remap() 124 if (select == GAMUT_REMAP_COEFF) { in program_gamut_remap() 133 } else if (select == GAMUT_REMAP_COMA_COEFF) { in program_gamut_remap() 198 * currently. select the alternate set to double buffer in dpp1_cm_program_color_matrix() 431 enum dcn10_input_csc_select select; in dpp1_program_input_csc() local 455 * currently. select the alternate set to double buffer in dpp1_program_input_csc() 465 select = INPUT_CSC_SELECT_ICSC; in dpp1_program_input_csc() 467 select in dpp1_program_input_csc() 91 program_gamut_remap( struct dcn10_dpp *dpp, const uint16_t *regval, enum gamut_remap_select select) program_gamut_remap() argument [all...] |
/kernel/linux/linux-6.6/drivers/gpu/drm/amd/display/dc/dcn10/ |
H A D | dcn10_dpp_cm.c | 94 enum gamut_remap_select select) in program_gamut_remap() 99 if (regval == NULL || select == GAMUT_REMAP_BYPASS) { in program_gamut_remap() 104 switch (select) { in program_gamut_remap() 124 if (select == GAMUT_REMAP_COEFF) { in program_gamut_remap() 133 } else if (select == GAMUT_REMAP_COMA_COEFF) { in program_gamut_remap() 198 * currently. select the alternate set to double buffer in dpp1_cm_program_color_matrix() 431 enum dcn10_input_csc_select select; in dpp1_program_input_csc() local 455 * currently. select the alternate set to double buffer in dpp1_program_input_csc() 465 select = INPUT_CSC_SELECT_ICSC; in dpp1_program_input_csc() 467 select in dpp1_program_input_csc() 91 program_gamut_remap( struct dcn10_dpp *dpp, const uint16_t *regval, enum gamut_remap_select select) program_gamut_remap() argument [all...] |
/kernel/linux/linux-5.10/drivers/misc/eeprom/ |
H A D | eeprom_93xx46.c | 367 gpiod_set_value_cansleep(edev->pdata->select, 1); in select_assert() 374 gpiod_set_value_cansleep(edev->pdata->select, 0); in select_deassert() 416 pd->select = devm_gpiod_get_optional(&spi->dev, "select", in eeprom_93xx46_probe_dt() 418 if (IS_ERR(pd->select)) in eeprom_93xx46_probe_dt() 419 return PTR_ERR(pd->select); in eeprom_93xx46_probe_dt() 423 gpiod_direction_output(pd->select, 0); in eeprom_93xx46_probe_dt()
|
/kernel/linux/linux-5.10/drivers/virtio/ |
H A D | virtio_input.c | 112 u8 select, u8 subsel) in virtinput_cfg_select() 116 virtio_cwrite_le(vi->vdev, struct virtio_input_config, select, &select); in virtinput_cfg_select() 122 static void virtinput_cfg_bits(struct virtio_input *vi, int select, int subsel, in virtinput_cfg_bits() argument 129 bytes = virtinput_cfg_select(vi, select, subsel); in virtinput_cfg_bits() 152 if (select == VIRTIO_INPUT_CFG_EV_BITS) in virtinput_cfg_bits() 111 virtinput_cfg_select(struct virtio_input *vi, u8 select, u8 subsel) virtinput_cfg_select() argument
|
/kernel/linux/linux-6.6/drivers/misc/eeprom/ |
H A D | eeprom_93xx46.c | 388 gpiod_set_value_cansleep(edev->pdata->select, 1); in select_assert() 395 gpiod_set_value_cansleep(edev->pdata->select, 0); in select_deassert() 457 pd->select = devm_gpiod_get_optional(&spi->dev, "select", in eeprom_93xx46_probe_dt() 459 if (IS_ERR(pd->select)) in eeprom_93xx46_probe_dt() 460 return PTR_ERR(pd->select); in eeprom_93xx46_probe_dt() 464 gpiod_direction_output(pd->select, 0); in eeprom_93xx46_probe_dt()
|
/kernel/linux/linux-6.6/drivers/virtio/ |
H A D | virtio_input.c | 128 u8 select, u8 subsel) in virtinput_cfg_select() 132 virtio_cwrite_le(vi->vdev, struct virtio_input_config, select, &select); in virtinput_cfg_select() 138 static void virtinput_cfg_bits(struct virtio_input *vi, int select, int subsel, in virtinput_cfg_bits() argument 145 bytes = virtinput_cfg_select(vi, select, subsel); in virtinput_cfg_bits() 168 if (select == VIRTIO_INPUT_CFG_EV_BITS) in virtinput_cfg_bits() 127 virtinput_cfg_select(struct virtio_input *vi, u8 select, u8 subsel) virtinput_cfg_select() argument
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | PluralSamples.java | 90 String keyword = pluralRules.select(s); in PluralSamples() 113 String keyword = pluralRules.select(s); in PluralSamples() 147 String keyword = pluralRules.select(val); in addSimpleSamples() 175 String keyword = pluralRules.select(numberInfo); in addIfNotPresent() 205 String keyword = pluralRules.select(base); in fractions() 234 String keywordOther = pluralRules.select(other); in getDifferentCategory()
|
H A D | PluralRules.java | 43 * Rules are constructed from a text description, consisting of a series of keywords and conditions. The {@link #select} 1885 public String select(IFixedDecimal n) { in select() method in PluralRules.RuleList 1948 public boolean select(IFixedDecimal sample, String keyword) { in select() method in PluralRules.RuleList 2104 public String select(double number) { in select() method in PluralRules 2105 return rules.select(new FixedDecimal(number)); in select() 2119 public String select(FormattedNumber number) { in select() method in PluralRules 2120 return rules.select(number.getFixedDecimal()); in select() 2134 public String select(double number, int countVisibleFractionDigits, long fractionaldigits) { in select() method in PluralRules 2135 return rules.select(new FixedDecimal(number, countVisibleFractionDigits, fractionaldigits)); in select() 2148 public String select(IFixedDecima method in PluralRules [all...] |
/kernel/linux/linux-5.10/arch/mips/cavium-octeon/executive/ |
H A D | cvmx-helper-jtag.c | 95 jtgd.s.select = 1 << qlm; in cvmx_helper_qlm_jtag_shift() 139 jtgd.s.select = 1 << qlm; in cvmx_helper_qlm_jtag_update()
|
/kernel/linux/linux-6.6/arch/mips/cavium-octeon/executive/ |
H A D | cvmx-helper-jtag.c | 95 jtgd.s.select = 1 << qlm; in cvmx_helper_qlm_jtag_shift() 139 jtgd.s.select = 1 << qlm; in cvmx_helper_qlm_jtag_update()
|
/kernel/linux/linux-5.10/tools/lib/subcmd/ |
H A D | pager.c | 2 #include <sys/select.h> 46 select(1, &in, NULL, &exception, NULL); in pager_preexec()
|
/kernel/linux/linux-6.6/tools/lib/subcmd/ |
H A D | pager.c | 2 #include <sys/select.h> 46 select(1, &in, NULL, &exception, NULL); in pager_preexec()
|
/third_party/curl/tests/libtest/ |
H A D | lib1531.c | 71 int rc; /* select() return code */ in test() 107 select(maxfd + 1, ...); specially in case of (maxfd == -1) there are in test() 108 no fds ready yet so we call select(0, ...) --or Sleep() on Windows-- in test() 119 rc = select(0, NULL, NULL, NULL, &wait); in test() 123 /* Note that on some platforms 'timeout' may be modified by select(). in test() 125 rc = select(maxfd + 1, &fdread, &fdwrite, &fdexcep, &timeout); in test() 130 /* select error */ in test()
|
/third_party/curl/src/ |
H A D | tool_cb_rea.c | 27 #include <sys/select.h> 67 socket which makes it not work with select() on Windows */ in tool_read_cb() 79 if(!select(per->infd + 1, &bits, NULL, NULL, &timeout)) in tool_read_cb() 106 /* when select() returned zero here, it timed out */ in tool_read_cb()
|
/third_party/musl/src/select/ |
H A D | select.c | 1 #include <sys/select.h> 10 int select(int n, fd_set *restrict rfds, fd_set *restrict wfds, fd_set *restrict efds, struct timeval *restrict tv) in select() function
|
/third_party/musl/include/sys/ |
H A D | select.h | 39 int select (int, fd_set *__restrict, fd_set *__restrict, fd_set *__restrict, struct timeval *__restrict); 47 __REDIR(select, __select_time64);
|
/kernel/linux/linux-5.10/drivers/firmware/ |
H A D | qemu_fw_cfg.c | 10 * and select subsets of aarch64), a Device Tree node (on arm), or using 317 u16 select; member 340 ret = fw_cfg_write_blob(be16_to_cpu(f->select), data, in fw_cfg_write_vmcoreinfo() 411 return sprintf(buf, "%u\n", e->select); in fw_cfg_sysfs_show_key() 472 return fw_cfg_read_blob(entry->select, buf, pos, count); in fw_cfg_sysfs_read_raw() 600 entry->select = be16_to_cpu(f->select); in fw_cfg_register_file() 605 fw_cfg_sel_ko, "%d", entry->select); in fw_cfg_register_file()
|
/kernel/linux/linux-6.6/drivers/firmware/ |
H A D | qemu_fw_cfg.c | 10 * and select subsets of aarch64), a Device Tree node (on arm), or using 317 u16 select; member 340 ret = fw_cfg_write_blob(be16_to_cpu(f->select), data, in fw_cfg_write_vmcoreinfo() 412 return sprintf(buf, "%u\n", e->select); in fw_cfg_sysfs_show_key() 474 return fw_cfg_read_blob(entry->select, buf, pos, count); in fw_cfg_sysfs_read_raw() 602 entry->select = be16_to_cpu(f->select); in fw_cfg_register_file() 607 fw_cfg_sel_ko, "%d", entry->select); in fw_cfg_register_file()
|