Home
last modified time | relevance | path

Searched refs:c32 (Results 1 – 25 of 57) sorted by relevance

123

/freebsd-12-stable/lib/libc/locale/
Dc32rtomb.c38 c32rtomb_l(char * __restrict s, char32_t c32, mbstate_t * __restrict ps, in c32rtomb_l() argument
43 if ((c32 >= 0xd800 && c32 <= 0xdfff) || c32 > 0x10ffff) { in c32rtomb_l()
53 return (wcrtomb_l(s, c32, ps, locale)); in c32rtomb_l()
57 c32rtomb(char * __restrict s, char32_t c32, mbstate_t * __restrict ps) in c32rtomb() argument
60 return (c32rtomb_l(s, c32, ps, __get_locale())); in c32rtomb()
Dmbrtoc16.c45 char32_t c32; in mbrtoc16_l() local
70 len = mbrtoc32_l(&c32, s, n, &cs->c32_mbstate, locale); in mbrtoc16_l()
72 if (c32 < 0x10000) { in mbrtoc16_l()
74 *pc16 = c32; in mbrtoc16_l()
77 c32 -= 0x10000; in mbrtoc16_l()
78 *pc16 = 0xd800 | (c32 >> 10); in mbrtoc16_l()
79 cs->trail_surrogate = 0xdc00 | (c32 & 0x3ff); in mbrtoc16_l()
Dc16rtomb.c46 char32_t c32; in c16rtomb_l() local
55 c32 = 0; in c16rtomb_l()
63 c32 = 0x10000 + ((cs->lead_surrogate & 0x3ff) << 10 | in c16rtomb_l()
71 c32 = c16; in c16rtomb_l()
75 return (c32rtomb_l(s, c32, &cs->c32_mbstate, locale)); in c16rtomb_l()
/freebsd-12-stable/sys/gnu/dts/arm/
Dstih415-clock.dtsi155 compatible = "st,plls-c32-a1x-0", "st,clkgen-plls-c32";
167 compatible = "st,plls-c32-a1x-1", "st,clkgen-plls-c32";
179 compatible = "st,clkgena-prediv-c32",
189 compatible = "st,clkgena-divmux-c32-odf0",
208 compatible = "st,clkgena-divmux-c32-odf1",
227 compatible = "st,clkgena-divmux-c32-odf2",
246 compatible = "st,clkgena-divmux-c32-odf3",
269 compatible = "st,plls-c32-a1x-0", "st,clkgen-plls-c32";
281 compatible = "st,plls-c32-a1x-1", "st,clkgen-plls-c32";
293 compatible = "st,clkgena-prediv-c32",
[all …]
Dstih416-clock.dtsi157 compatible = "st,plls-c32-a1x-0", "st,clkgen-plls-c32";
169 compatible = "st,plls-c32-a1x-1", "st,clkgen-plls-c32";
181 compatible = "st,clkgena-prediv-c32",
191 compatible = "st,clkgena-divmux-c32-odf0",
210 compatible = "st,clkgena-divmux-c32-odf1",
229 compatible = "st,clkgena-divmux-c32-odf2",
248 compatible = "st,clkgena-divmux-c32-odf3",
271 compatible = "st,plls-c32-a1x-0", "st,clkgen-plls-c32";
283 compatible = "st,plls-c32-a1x-1", "st,clkgen-plls-c32";
295 compatible = "st,clkgena-prediv-c32",
[all …]
Dstih410-clock.dtsi34 compatible = "st,clkgen-c32";
72 compatible = "st,clkgen-c32";
114 compatible = "st,clkgen-c32";
225 compatible = "st,clkgen-c32";
261 compatible = "st,clkgen-c32";
309 compatible = "st,clkgen-c32";
Dstih407-clock.dtsi31 compatible = "st,clkgen-c32";
72 compatible = "st,clkgen-c32";
113 compatible = "st,clkgen-c32";
217 compatible = "st,clkgen-c32";
251 compatible = "st,clkgen-c32";
299 compatible = "st,clkgen-c32";
Dstih418-clock.dtsi34 compatible = "st,clkgen-c32";
73 compatible = "st,clkgen-c32";
112 compatible = "st,clkgen-c32";
219 compatible = "st,clkgen-c32";
255 compatible = "st,clkgen-c32";
310 compatible = "st,clkgen-c32";
Dimx6ul-phytec-phycore-som.dtsi77 compatible = "catalyst,24c32", "atmel,24c32";
Dimx27-phytec-phycard-s-som.dtsi38 compatible = "atmel,24c32";
Domap4-var-som-om44.dtsi233 compatible = "microchip,24c32", "atmel,24c32";
Dsocfpga_cyclone5_sodia.dts91 compatible = "atmel,24c32";
Dat91-dvk_su60_somc.dtsi74 compatible = "giantec,gt24c32a", "atmel,24c32";
Dsocfpga_arria5_socdk.dts99 compatible = "atmel,24c32";
Dsocfpga_cyclone5_socdk.dts103 compatible = "atmel,24c32";
Dsocfpga_arria10_socdk.dtsi151 compatible = "atmel,24c32";
Dimx6qdl-phytec-phycore-som.dtsi87 compatible = "atmel,24c32";
Drk3288-phycore-rdk.dts110 compatible = "atmel,24c32";
Dls1021a-tsn.dts180 compatible = "atmel,24c32";
Dimx27-phytec-phycore-som.dtsi192 compatible = "atmel,24c32";
Dimx28-evk.dts262 compatible = "atmel,24c32";
/freebsd-12-stable/sys/dev/drm2/
Ddrm_ioc32.c234 drm_client32_t *c32 = data; in compat_drm_getclient() local
238 client.idx = c32->idx; in compat_drm_getclient()
244 c32->idx = client.idx; in compat_drm_getclient()
245 c32->auth = client.auth; in compat_drm_getclient()
246 c32->pid = client.pid; in compat_drm_getclient()
247 c32->uid = client.uid; in compat_drm_getclient()
248 c32->magic = client.magic; in compat_drm_getclient()
249 c32->iocs = client.iocs; in compat_drm_getclient()
/freebsd-12-stable/sys/dev/gpio/
Dgpioc.c786 struct gpio_config_32 *c32; in gpioc_ioctl() local
888 c32 = (struct gpio_config_32 *)arg; in gpioc_ioctl()
889 res = GPIO_PIN_CONFIG_32(sc->sc_pdev, c32->first_pin, in gpioc_ioctl()
890 c32->num_pins, c32->pin_flags); in gpioc_ioctl()
/freebsd-12-stable/sys/gnu/dts/arm64/altera/
Dsocfpga_stratix10_socdk.dts146 compatible = "atmel,24c32";
Dsocfpga_stratix10_socdk_nand.dts179 compatible = "atmel,24c32";

123