Home
last modified time | relevance | path

Searched refs:gb (Results 1 – 25 of 107) sorted by relevance

12345

/openbmc/linux/drivers/staging/greybus/
H A Dloopback.c53 struct gb_loopback *gb; member
126 struct gb_loopback *gb = dev_get_drvdata(dev); \
127 return sprintf(buf, "%u\n", gb->field); \
136 struct gb_loopback *gb = dev_get_drvdata(dev); \
138 if (!gb->requests_completed) \
140 return sprintf(buf, "%" #type "\n", gb->name.field); \
150 struct gb_loopback *gb; \
153 gb = dev_get_drvdata(dev); \
154 stats = &gb->name; \
174 struct gb_loopback *gb = dev_get_drvdata(dev); \
[all …]
H A DMakefile6 gb-bootrom-y := bootrom.o
7 gb-camera-y := camera.o
8 gb-firmware-y := fw-core.o fw-download.o fw-management.o authentication.o
9 gb-spilib-y := spilib.o
10 gb-hid-y := hid.o
11 gb-light-y := light.o
12 gb-log-y := log.o
13 gb-loopback-y := loopback.o
14 gb-power-supply-y := power_supply.o
15 gb-raw-y := raw.o
[all …]
H A DKconfig12 will be called gb-audio.ko
23 will be called gb-audio-codec.ko
33 will be called gb-bootrom.ko
43 will be called gb-camera.ko
53 will be called gb-firmware.ko
63 will be called gb-hid.ko
73 will be called gb-light.ko
82 will be called gb-log.ko
91 will be called gb-log.ko
101 will be called gb-power-supply.ko
[all …]
H A Daudio_topology.c139 static const char **gb_generate_enum_strings(struct gbaudio_module_info *gb, in gb_generate_enum_strings() argument
148 strings = devm_kcalloc(gb->dev, items, sizeof(char *), GFP_KERNEL); in gb_generate_enum_strings()
224 struct gbaudio_codec_info *gb = snd_soc_component_get_drvdata(comp); in gbcodec_mixer_ctl_get() local
228 module = find_gb_module(gb, kcontrol->id.name); in gbcodec_mixer_ctl_get()
286 struct gbaudio_codec_info *gb = snd_soc_component_get_drvdata(comp); in gbcodec_mixer_ctl_put() local
290 module = find_gb_module(gb, kcontrol->id.name); in gbcodec_mixer_ctl_put()
390 struct gbaudio_codec_info *gb = dev_get_drvdata(codec_dev); in gbcodec_mixer_dapm_ctl_get() local
394 module = find_gb_module(gb, kcontrol->id.name); in gbcodec_mixer_dapm_ctl_get()
439 struct gbaudio_codec_info *gb = dev_get_drvdata(codec_dev); in gbcodec_mixer_dapm_ctl_put() local
443 module = find_gb_module(gb, kcontrol->id.name); in gbcodec_mixer_dapm_ctl_put()
[all …]
/openbmc/linux/drivers/staging/media/atomisp/pci/isp/kernels/dp/dp_1.0/
H A Dia_css_dp.host.c55 int gb = from->gb; in ia_css_dp_encode() local
68 uDIGIT_FITTING(gain * gb / r, 8, SH_CSS_DP_GAIN_SHIFT); in ia_css_dp_encode()
70 uDIGIT_FITTING(gain * gb / b, 8, SH_CSS_DP_GAIN_SHIFT); in ia_css_dp_encode()
78 uDIGIT_FITTING(gain * b / gb, 8, SH_CSS_DP_GAIN_SHIFT); in ia_css_dp_encode()
80 uDIGIT_FITTING(gain * r / gb, 8, SH_CSS_DP_GAIN_SHIFT); in ia_css_dp_encode()
H A Dia_css_dp_types.h46 u32 gb; /* unsigned <integer_bits>.<16-integer_bits> */ member
/openbmc/u-boot/disk/
H A Dpart_mac.c73 ldiv_t mb, gb; in part_print_mac() local
91 gb = ldiv(10 * mb.quot + mb.rem, 10240); in part_print_mac()
92 gb.rem += 512; in part_print_mac()
93 gb.rem /= 1024; in part_print_mac()
103 mb.quot, mb.rem, gb.quot, gb.rem, in part_print_mac()
H A Dpart.c188 ulong mb, mb_quot, mb_rem, gb, gb_quot, gb_rem; in dev_print() local
201 gb = mb / 1024; in dev_print()
202 gb_quot = gb / 10; in dev_print()
203 gb_rem = gb - (10 * gb_quot); in dev_print()
/openbmc/linux/drivers/staging/greybus/Documentation/firmware/
H A Dfirmware-management51 and will be named gb-fw-mgmt-<N>. The number <N> is assigned at runtime.
56 There can be multiple devices present in /dev/ directory with name gb-fw-mgmt-N
66 /sys/bus/greybus/devices/1-1/1-1.1/1-1.1.1/gb_fw_mgmt/gb-fw-mgmt-0
68 The last name in this path: gb-fw-mgmt-0 is precisely the name of the char
71 /dev/gb-fw-mgmt-0.
76 The Character device (gb-fw-mgmt-0 in example) can be opened by the userspace
188 directory and will be named gb-authenticate-<N>. The number <N> is assigned at
195 gb-authenticate-N and user first needs to identify the character device used for
204 /sys/bus/greybus/devices/1-1/1-1.1/1-1.1.1/gb_authenticate/gb-authenticate-0
206 The last name in this path: gb-authenticate-0 is precisely the name of the char
[all …]
/openbmc/linux/drivers/greybus/
H A DMakefile22 gb-es2-y := es2.o
24 obj-$(CONFIG_GREYBUS_ES2) += gb-es2.o
/openbmc/linux/arch/mips/boot/dts/ralink/
H A DMakefile10 mt7621-gnubee-gb-pc1.dtb \
11 mt7621-gnubee-gb-pc2.dtb \
/openbmc/linux/kernel/
H A Dcred.c542 struct group_info *ga, *gb; in cred_fscmp() local
558 gb = b->group_info; in cred_fscmp()
559 if (ga == gb) in cred_fscmp()
563 if (gb == NULL) in cred_fscmp()
565 if (ga->ngroups < gb->ngroups) in cred_fscmp()
567 if (ga->ngroups > gb->ngroups) in cred_fscmp()
571 if (gid_lt(ga->gid[g], gb->gid[g])) in cred_fscmp()
573 if (gid_gt(ga->gid[g], gb->gid[g])) in cred_fscmp()
/openbmc/u-boot/drivers/i2c/
H A Dfsl_i2c.c133 ushort a, b, ga, gb; in set_i2c_bus_speed() local
152 for (gb = 0; gb < 8; gb++) { in set_i2c_bus_speed()
153 b = 16 << gb; in set_i2c_bus_speed()
159 bin_gb = gb << 2; in set_i2c_bus_speed()
166 debug("ga: 0x%x, gb: 0x%x, ", ga, gb); in set_i2c_bus_speed()
/openbmc/linux/drivers/staging/media/atomisp/pci/isp/kernels/wb/wb_1.0/
H A Dia_css_wb.host.c52 uDIGIT_FITTING(from->gb, 16 - from->integer_bits, in ia_css_wb_encode()
85 config->b, config->gb); in ia_css_wb_debug_dtrace()
H A Dia_css_wb_types.h42 u32 gb; /** Significand of Gb gain. member
/openbmc/qemu/pc-bios/keymaps/
H A Dmeson.build8 'en-gb': '-l gb',
/openbmc/linux/net/nfc/
H A Ddigital_dep.c71 u8 gb[]; member
83 u8 gb[]; member
448 rc = nfc_set_remote_general_bytes(ddev->nfc_dev, atr_res->gb, gb_len); in digital_in_recv_atr_res()
472 struct nfc_target *target, __u8 comm_mode, __u8 *gb, in digital_in_send_atr_req() argument
514 skb_put_data(skb, gb, gb_len); in digital_in_send_atr_req()
1494 u8 *gb, payload_bits; in digital_tg_send_atr_res() local
1498 gb = nfc_get_local_general_bytes(ddev->nfc_dev, &gb_len); in digital_tg_send_atr_res()
1499 if (!gb) in digital_tg_send_atr_res()
1524 memcpy(atr_res->gb, gb, gb_len); in digital_tg_send_atr_res()
1621 NFC_COMM_PASSIVE, atr_req->gb, gb_len); in digital_tg_recv_atr_req()
H A Dcore.c283 u8 *gb; in nfc_dep_link_up() local
304 gb = nfc_llcp_general_bytes(dev, &gb_len); in nfc_dep_link_up()
316 rc = dev->ops->dep_link_up(dev, target, comm_mode, gb, gb_len); in nfc_dep_link_up()
639 int nfc_set_remote_general_bytes(struct nfc_dev *dev, const u8 *gb, u8 gb_len) in nfc_set_remote_general_bytes() argument
643 return nfc_llcp_set_remote_gb(dev, gb, gb_len); in nfc_set_remote_general_bytes()
668 const u8 *gb, size_t gb_len) in nfc_tm_activated() argument
676 if (gb != NULL) { in nfc_tm_activated()
677 rc = nfc_set_remote_general_bytes(dev, gb, gb_len); in nfc_tm_activated()
/openbmc/openbmc/poky/meta/recipes-core/musl/
H A Dmusl-locales_git.bb34 LICENSE:locale-base-en-gb = "MIT"
52 locale-base-en-gb \
70 FILES:locale-base-en-gb += "${datadir}/i18n/locales/musl/en_GB.UTF-8"
/openbmc/openbmc/poky/meta/conf/distro/include/
H A Ddefault-distrovars.inc8 DEFAULT_IMAGE_LINGUAS = "en-us en-gb"
9 DEFAULT_IMAGE_LINGUAS:libc-glibc = "c en-us en-gb"
/openbmc/linux/drivers/nfc/microread/
H A Dmicroread.c254 hdev->gb = nfc_get_local_general_bytes(hdev->ndev, in microread_start_poll()
256 if (hdev->gb == NULL || hdev->gb_len == 0) { in microread_start_poll()
276 hdev->gb, hdev->gb_len); in microread_start_poll()
284 hdev->gb, hdev->gb_len); in microread_start_poll()
302 u8 *gb, size_t gb_len) in microread_dep_link_up() argument
/openbmc/u-boot/tools/binman/test/
H A D030_x86-rom-me-no-desc.dts9 end-at-4gb;
H A D027_pack_4gb_no_size.dts9 end-at-4gb;
H A D028_pack_4gb_outside.dts9 end-at-4gb;
/openbmc/linux/drivers/nfc/pn544/
H A Dpn544.c380 hdev->gb = nfc_get_local_general_bytes(hdev->ndev, in pn544_hci_start_poll()
382 pr_debug("generate local bytes %p\n", hdev->gb); in pn544_hci_start_poll()
383 if (hdev->gb == NULL || hdev->gb_len == 0) { in pn544_hci_start_poll()
404 PN544_DEP_ATR_REQ, hdev->gb, hdev->gb_len); in pn544_hci_start_poll()
424 PN544_DEP_ATR_RES, hdev->gb, hdev->gb_len); in pn544_hci_start_poll()
445 u8 *gb, size_t gb_len) in pn544_hci_dep_link_up() argument

12345