Home
last modified time | relevance | path

Searched refs:scan (Results 101 - 125 of 916) sorted by relevance

12345678910>>...37

/kernel/linux/linux-5.10/drivers/net/ethernet/toshiba/
H A Dps3_gelic_wireless.c356 /* scan capability */ in gelic_wl_get_range()
379 pr_debug("%s: ESSID scan =%s\n", __func__, essid); in gelic_wl_set_scan()
394 struct gelic_eurus_scan_info *scan) in gelic_wl_synthesize_ie()
402 pr_debug("%s: <- sec=%16x\n", __func__, scan->security); in gelic_wl_synthesize_ie()
403 switch (be16_to_cpu(scan->security) & GELIC_EURUS_SCAN_SEC_MASK) { in gelic_wl_synthesize_ie()
415 switch (be16_to_cpu(scan->security) & GELIC_EURUS_SCAN_SEC_WPA_MASK) { in gelic_wl_synthesize_ie()
559 * translate the scan informations from hypervisor to a
569 struct gelic_eurus_scan_info *scan = network->hwinfo; in gelic_wl_translate_scan() local
580 memcpy(iwe.u.ap_addr.sa_data, &scan->bssid[2], ETH_ALEN); in gelic_wl_translate_scan()
586 iwe.u.data.length = strnlen(scan in gelic_wl_translate_scan()
393 gelic_wl_synthesize_ie(u8 *buf, struct gelic_eurus_scan_info *scan) gelic_wl_synthesize_ie() argument
[all...]
/kernel/linux/linux-6.6/drivers/net/ethernet/toshiba/
H A Dps3_gelic_wireless.c356 /* scan capability */ in gelic_wl_get_range()
379 pr_debug("%s: ESSID scan =%s\n", __func__, essid); in gelic_wl_set_scan()
394 struct gelic_eurus_scan_info *scan) in gelic_wl_synthesize_ie()
402 pr_debug("%s: <- sec=%16x\n", __func__, scan->security); in gelic_wl_synthesize_ie()
403 switch (be16_to_cpu(scan->security) & GELIC_EURUS_SCAN_SEC_MASK) { in gelic_wl_synthesize_ie()
415 switch (be16_to_cpu(scan->security) & GELIC_EURUS_SCAN_SEC_WPA_MASK) { in gelic_wl_synthesize_ie()
559 * translate the scan informations from hypervisor to a
569 struct gelic_eurus_scan_info *scan = network->hwinfo; in gelic_wl_translate_scan() local
580 memcpy(iwe.u.ap_addr.sa_data, &scan->bssid[2], ETH_ALEN); in gelic_wl_translate_scan()
586 iwe.u.data.length = strnlen(scan in gelic_wl_translate_scan()
393 gelic_wl_synthesize_ie(u8 *buf, struct gelic_eurus_scan_info *scan) gelic_wl_synthesize_ie() argument
[all...]
/kernel/linux/linux-5.10/drivers/rapidio/
H A Drio.c1954 * @mport_id: mport device ID for which fabric scan routine has to be set
1963 * In case of RIO_MPORT_ANY skips mports with valid scan routines (no error).
1968 struct rio_scan_node *scan; in rio_register_scan() local
1984 list_for_each_entry(scan, &rio_scans, node) { in rio_register_scan()
1985 if (scan->mport_id == mport_id) { in rio_register_scan()
1992 * Allocate and initialize new scan registration node. in rio_register_scan()
1994 scan = kzalloc(sizeof(*scan), GFP_KERNEL); in rio_register_scan()
1995 if (!scan) { in rio_register_scan()
2000 scan in rio_register_scan()
2043 struct rio_scan_node *scan; rio_unregister_scan() local
2244 struct rio_scan_node *scan = NULL; rio_register_mport() local
[all...]
/kernel/linux/linux-6.6/drivers/rapidio/
H A Drio.c1889 * @mport_id: mport device ID for which fabric scan routine has to be set
1898 * In case of RIO_MPORT_ANY skips mports with valid scan routines (no error).
1903 struct rio_scan_node *scan; in rio_register_scan() local
1919 list_for_each_entry(scan, &rio_scans, node) { in rio_register_scan()
1920 if (scan->mport_id == mport_id) { in rio_register_scan()
1927 * Allocate and initialize new scan registration node. in rio_register_scan()
1929 scan = kzalloc(sizeof(*scan), GFP_KERNEL); in rio_register_scan()
1930 if (!scan) { in rio_register_scan()
1935 scan in rio_register_scan()
1978 struct rio_scan_node *scan; rio_unregister_scan() local
2163 struct rio_scan_node *scan = NULL; rio_register_mport() local
[all...]
/third_party/ffmpeg/libavcodec/
H A Dbink.c140 RUN_BLOCK, ///< block is composed from runs of colours with custom scan order
638 * @param scan scan order table
643 const uint8_t *scan, int *coef_count_, in read_dct_coeffs()
693 block[scan[ccoef]] = t; in read_dct_coeffs()
714 block[scan[ccoef]] = t; in read_dct_coeffs()
740 const uint8_t *scan) in unquantize_dct_coeffs()
746 block[scan[idx]] = (int)(block[scan[idx]] * quant[idx]) >> 11; in unquantize_dct_coeffs()
860 const uint8_t *scan; in binkb_decode_plane() local
642 read_dct_coeffs(BinkContext *c, GetBitContext *gb, int32_t block[64], const uint8_t *scan, int *coef_count_, int coef_idx[64], int q) read_dct_coeffs() argument
738 unquantize_dct_coeffs(int32_t block[64], const uint32_t quant[64], int coef_count, int coef_idx[64], const uint8_t *scan) unquantize_dct_coeffs() argument
1028 const uint8_t *scan; bink_decode_plane() local
[all...]
H A Dindeo5.c153 /* select transform function and scan pattern according to plane and band number */ in decode_gop_header()
158 band->scan = ff_zigzag_direct; in decode_gop_header()
165 band->scan = ff_ivi_vertical_scan_8x8; in decode_gop_header()
172 band->scan = ff_ivi_horizontal_scan_8x8; in decode_gop_header()
179 band->scan = ff_ivi_horizontal_scan_8x8; in decode_gop_header()
186 band->scan = ff_ivi_direct_scan_4x4; in decode_gop_header()
243 band2->scan = band1->scan; in decode_gop_header()
/third_party/PyYAML/tests/lib/
H A Dtest_tokens.py51 for token in yaml.scan(file):
69 for token in yaml.scan(file):
/third_party/skia/src/codec/
H A DSkJpegDecoderMgr.cpp33 int scan = ((j_decompress_ptr)info)->input_scan_number; in progress_monitor() local
38 if (scan >= 100) { in progress_monitor()
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/
H A Dnouveau_display.c89 struct nv04_disp_scanoutpos_v0 scan; in nouveau_display_scanoutpos_head() member
104 if (args.scan.vline) { in nouveau_display_scanoutpos_head()
112 *hpos = args.scan.hline; in nouveau_display_scanoutpos_head()
113 *vpos = calc(args.scan.vblanks, args.scan.vblanke, in nouveau_display_scanoutpos_head()
114 args.scan.vtotal, args.scan.vline); in nouveau_display_scanoutpos_head()
115 if (stime) *stime = ns_to_ktime(args.scan.time[0]); in nouveau_display_scanoutpos_head()
116 if (etime) *etime = ns_to_ktime(args.scan.time[1]); in nouveau_display_scanoutpos_head()
/kernel/linux/linux-6.6/tools/perf/arch/arm/util/
H A Dcs-etm.c568 int scan; in cs_etm_is_etmv4() local
577 scan = perf_pmu__scan_file(cs_etm_pmu, path, "%x", &val); in cs_etm_is_etmv4()
580 if (scan == 1) in cs_etm_is_etmv4()
589 int scan; in cs_etm_get_ro() local
595 scan = perf_pmu__scan_file(pmu, pmu_path, "%x", &val); in cs_etm_get_ro()
596 if (scan != 1) in cs_etm_get_ro()
605 int scan; in cs_etm_get_ro_signed() local
611 scan = perf_pmu__scan_file(pmu, pmu_path, "%d", &val); in cs_etm_get_ro_signed()
612 if (scan != 1) in cs_etm_get_ro_signed()
/kernel/linux/linux-5.10/drivers/net/wireless/atmel/
H A Dat76c50x-usb.c1160 struct at76_req_scan scan; in at76_start_monitor() local
1163 memset(&scan, 0, sizeof(struct at76_req_scan)); in at76_start_monitor()
1164 eth_broadcast_addr(scan.bssid); in at76_start_monitor()
1166 scan.channel = priv->channel; in at76_start_monitor()
1167 scan.scan_type = SCAN_TYPE_PASSIVE; in at76_start_monitor()
1168 scan.international_scan = 0; in at76_start_monitor()
1169 scan.min_channel_time = cpu_to_le16(priv->scan_min_time); in at76_start_monitor()
1170 scan.max_channel_time = cpu_to_le16(priv->scan_max_time); in at76_start_monitor()
1171 scan.probe_delay = cpu_to_le16(0); in at76_start_monitor()
1173 ret = at76_set_card_command(priv->udev, CMD_SCAN, &scan, sizeo in at76_start_monitor()
1959 struct at76_req_scan scan; at76_hw_scan() local
[all...]
/kernel/linux/linux-6.6/drivers/net/wireless/atmel/
H A Dat76c50x-usb.c1160 struct at76_req_scan scan; in at76_start_monitor() local
1163 memset(&scan, 0, sizeof(struct at76_req_scan)); in at76_start_monitor()
1164 eth_broadcast_addr(scan.bssid); in at76_start_monitor()
1166 scan.channel = priv->channel; in at76_start_monitor()
1167 scan.scan_type = SCAN_TYPE_PASSIVE; in at76_start_monitor()
1168 scan.international_scan = 0; in at76_start_monitor()
1169 scan.min_channel_time = cpu_to_le16(priv->scan_min_time); in at76_start_monitor()
1170 scan.max_channel_time = cpu_to_le16(priv->scan_max_time); in at76_start_monitor()
1171 scan.probe_delay = cpu_to_le16(0); in at76_start_monitor()
1173 ret = at76_set_card_command(priv->udev, CMD_SCAN, &scan, sizeo in at76_start_monitor()
1959 struct at76_req_scan scan; at76_hw_scan() local
[all...]
/kernel/linux/linux-5.10/drivers/char/
H A Dtoshiba.c102 unsigned char scan; in tosh_fn_status() local
106 scan = inb(tosh_fn); in tosh_fn_status()
110 scan = inb(0xe5); in tosh_fn_status()
114 return (int) scan; in tosh_fn_status()
/kernel/linux/linux-6.6/drivers/char/
H A Dtoshiba.c101 unsigned char scan; in tosh_fn_status() local
105 scan = inb(tosh_fn); in tosh_fn_status()
109 scan = inb(0xe5); in tosh_fn_status()
113 return (int) scan; in tosh_fn_status()
/kernel/linux/linux-6.6/drivers/iio/chemical/
H A Dsps30.c112 } scan; in sps30_trigger_handler() local
115 ret = sps30_do_meas(state, scan.data, ARRAY_SIZE(scan.data)); in sps30_trigger_handler()
120 iio_push_to_buffers_with_timestamp(indio_dev, &scan, in sps30_trigger_handler()
/kernel/linux/linux-6.6/drivers/iio/light/
H A Dhid-sensor-als.c31 } scan; member
201 iio_push_to_buffers_with_timestamp(indio_dev, &als_state->scan, in als_proc_event()
222 als_state->scan.illum[CHANNEL_SCAN_INDEX_INTENSITY] = sample_data; in als_capture_sample()
223 als_state->scan.illum[CHANNEL_SCAN_INDEX_ILLUM] = sample_data; in als_capture_sample()
/kernel/linux/linux-6.6/drivers/char/xillybus/
H A Dxillybus_core.c595 unsigned char *scan; in xilly_scan_idt() local
598 scan = idt + 1; in xilly_scan_idt()
599 idt_handle->names = scan; in xilly_scan_idt()
601 while ((scan <= end_of_idt) && *scan) { in xilly_scan_idt()
602 while ((scan <= end_of_idt) && *scan++) in xilly_scan_idt()
603 /* Do nothing, just scan thru string */; in xilly_scan_idt()
607 idt_handle->names_len = scan - idt_handle->names; in xilly_scan_idt()
609 scan in xilly_scan_idt()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
H A Dregcomp.c1471 sop *scan; in findmust() local
1485 scan = g->strip + 1; in findmust()
1487 s = *scan++; in findmust()
1491 newstart = scan - 1; in findmust()
1500 scan--; in findmust()
1502 scan += OPND(s); in findmust()
1503 s = *scan; in findmust()
1532 scan = start; in findmust()
1534 while (OP(s = *scan++) != OCHAR) in findmust()
1549 sop *scan; in pluscount() local
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A Dregcomp.c1599 sop *scan; in findmust() local
1613 scan = g->strip + 1; in findmust()
1615 s = *scan++; in findmust()
1619 newstart = scan - 1; in findmust()
1628 scan--; in findmust()
1630 scan += OPND(s); in findmust()
1631 s = *scan; in findmust()
1660 scan = start; in findmust()
1662 while (OP(s = *scan++) != OCHAR) in findmust()
1677 sop *scan; in pluscount() local
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/
H A Dwpa_priv.c140 struct privsep_cmd_scan *scan; in wpa_priv_cmd_scan() local
147 if (len < sizeof(*scan)) { in wpa_priv_cmd_scan()
148 wpa_printf(MSG_DEBUG, "Invalid scan request"); in wpa_priv_cmd_scan()
152 scan = buf; in wpa_priv_cmd_scan()
155 if (scan->num_ssids > WPAS_MAX_SCAN_SSIDS) { in wpa_priv_cmd_scan()
156 wpa_printf(MSG_DEBUG, "Invalid scan request (num_ssids)"); in wpa_priv_cmd_scan()
159 params.num_ssids = scan->num_ssids; in wpa_priv_cmd_scan()
160 for (i = 0; i < scan->num_ssids; i++) { in wpa_priv_cmd_scan()
161 params.ssids[i].ssid = scan->ssids[i]; in wpa_priv_cmd_scan()
162 params.ssids[i].ssid_len = scan in wpa_priv_cmd_scan()
[all...]
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/
H A Dwpa_priv.c140 struct privsep_cmd_scan *scan; in wpa_priv_cmd_scan() local
147 if (len < sizeof(*scan)) { in wpa_priv_cmd_scan()
148 wpa_printf(MSG_DEBUG, "Invalid scan request"); in wpa_priv_cmd_scan()
152 scan = buf; in wpa_priv_cmd_scan()
155 if (scan->num_ssids > WPAS_MAX_SCAN_SSIDS) { in wpa_priv_cmd_scan()
156 wpa_printf(MSG_DEBUG, "Invalid scan request (num_ssids)"); in wpa_priv_cmd_scan()
159 params.num_ssids = scan->num_ssids; in wpa_priv_cmd_scan()
160 for (i = 0; i < scan->num_ssids; i++) { in wpa_priv_cmd_scan()
161 params.ssids[i].ssid = scan->ssids[i]; in wpa_priv_cmd_scan()
162 params.ssids[i].ssid_len = scan in wpa_priv_cmd_scan()
[all...]
/kernel/linux/linux-5.10/drivers/iio/adc/
H A Dti-adc084s021.c33 } scan; member
152 if (adc084s021_adc_conversion(adc, adc->scan.channels) < 0) in adc084s021_buffer_trigger_handler()
155 iio_push_to_buffers_with_timestamp(indio_dev, &adc->scan, in adc084s021_buffer_trigger_handler()
H A Dti-adc081c.c41 } scan; member
142 data->scan.channel = ret; in adc081c_trigger_handler()
143 iio_push_to_buffers_with_timestamp(indio_dev, &data->scan, in adc081c_trigger_handler()
H A Dmax1118.c43 } scan; member
191 adc->scan.channels[i] = ret; in max1118_trigger_handler()
194 iio_push_to_buffers_with_timestamp(indio_dev, &adc->scan, in max1118_trigger_handler()
/kernel/linux/linux-5.10/drivers/iio/temperature/
H A Dhid-sensor-temperature.c21 } scan; member
129 iio_push_to_buffers_with_timestamp(indio_dev, &temp_st->scan, in temperature_proc_event()
145 temp_st->scan.temperature_data = *(s32 *)raw_data; in temperature_capture_sample()

Completed in 28 milliseconds

12345678910>>...37