| /rk3399_rockchip-uboot/common/ |
| H A D | dlmalloc.c | 647 #define is_small_request(nb) (nb < MAX_SMALLBIN_SIZE - SMALLBIN_WIDTH) argument 1063 static void malloc_extend_top(INTERNAL_SIZE_T nb) in malloc_extend_top() argument 1065 static void malloc_extend_top(nb) INTERNAL_SIZE_T nb; in malloc_extend_top() 1080 INTERNAL_SIZE_T sbrk_size = nb + top_pad + MINSIZE; 1255 INTERNAL_SIZE_T nb; local 1270 nb = request2size(bytes); /* padded request size; */ 1274 if (is_small_request(nb)) /* Faster version for small requests */ 1276 idx = smallbin_index(nb); 1294 check_malloced_chunk(victim, nb); 1303 idx = bin_index(nb); [all …]
|
| H A D | dlmalloc.src | 1517 #define is_small_request(nb) (nb < MAX_SMALLBIN_SIZE - SMALLBIN_WIDTH) 1928 static void malloc_extend_top(INTERNAL_SIZE_T nb) 1930 static void malloc_extend_top(nb) INTERNAL_SIZE_T nb; 1945 INTERNAL_SIZE_T sbrk_size = nb + top_pad + MINSIZE; 2045 The requested size is first converted into a usable form, `nb'. 2120 INTERNAL_SIZE_T nb; 2124 nb = request2size(bytes); /* padded request size; */ 2128 if (is_small_request(nb)) /* Faster version for small requests */ 2130 idx = smallbin_index(nb); 2148 check_malloced_chunk(victim, nb); [all …]
|
| /rk3399_rockchip-uboot/include/linux/mtd/ |
| H A D | ubi.h | 240 typedef int (*notifier_fn_t)(void *nb, 250 int ubi_register_volume_notifier(struct notifier_block *nb, 252 int ubi_unregister_volume_notifier(struct notifier_block *nb);
|
| /rk3399_rockchip-uboot/lib/zlib/ |
| H A D | zutil.c | 64 void zcfree(voidpf opaque, voidpf ptr, unsigned nb) in zcfree() argument
|
| /rk3399_rockchip-uboot/drivers/usb/gadget/ |
| H A D | designware_udc.c | 187 u32 i, nw, nb; in usbgetpckfromfifo() local 196 nb = len % sizeof(u32); in usbgetpckfromfifo() 210 for (i = 0; i < nb; i++) { in usbgetpckfromfifo() 226 u32 i, nw, nb; in usbputpcktofifo() local 232 nb = len % sizeof(int); in usbputpcktofifo() 240 for (i = 0; i < nb; i++) { in usbputpcktofifo()
|
| /rk3399_rockchip-uboot/drivers/mtd/ubi/ |
| H A D | kapi.c | 827 int ubi_register_volume_notifier(struct notifier_block *nb, in ubi_register_volume_notifier() argument 832 err = blocking_notifier_chain_register(&ubi_notifiers, nb); in ubi_register_volume_notifier() 845 ubi_enumerate_volumes(nb); in ubi_register_volume_notifier() 859 int ubi_unregister_volume_notifier(struct notifier_block *nb) in ubi_unregister_volume_notifier() argument 861 return blocking_notifier_chain_unregister(&ubi_notifiers, nb); in ubi_unregister_volume_notifier()
|
| H A D | build.c | 215 int ubi_notify_all(struct ubi_device *ubi, int ntype, struct notifier_block *nb) in ubi_notify_all() argument 237 if (nb) in ubi_notify_all() 238 nb->notifier_call(nb, ntype, &nt); in ubi_notify_all() 259 int ubi_enumerate_volumes(struct notifier_block *nb) in ubi_enumerate_volumes() argument 272 count += ubi_notify_all(ubi, UBI_VOLUME_ADDED, nb); in ubi_enumerate_volumes()
|
| H A D | ubi.h | 910 struct notifier_block *nb); 911 int ubi_enumerate_volumes(struct notifier_block *nb);
|
| /rk3399_rockchip-uboot/arch/arm/dts/ |
| H A D | sama5d3.dtsi | 1386 atmel,nb-banks = <1>; 1392 atmel,nb-banks = <3>; 1400 atmel,nb-banks = <3>; 1408 atmel,nb-banks = <2>; 1415 atmel,nb-banks = <2>; 1422 atmel,nb-banks = <2>; 1429 atmel,nb-banks = <2>; 1436 atmel,nb-banks = <2>; 1443 atmel,nb-banks = <2>; 1449 atmel,nb-banks = <2>; [all …]
|
| H A D | sama5d4.dtsi | 142 atmel,nb-banks = <1>; 148 atmel,nb-banks = <3>; 156 atmel,nb-banks = <3>; 164 atmel,nb-banks = <2>; 172 atmel,nb-banks = <2>; 180 atmel,nb-banks = <2>; 188 atmel,nb-banks = <2>; 196 atmel,nb-banks = <2>; 204 atmel,nb-banks = <2>; 211 atmel,nb-banks = <2>; [all …]
|
| H A D | armada-37xx.dtsi | 109 pinctrl_nb: pinctrl-nb@13800 { 110 compatible = "marvell,armada3710-nb-pinctrl", 271 bank-name = "armada-3700-nb";
|
| H A D | at91sam9rl.dtsi | 306 atmel,nb-banks = <1>; 312 atmel,nb-banks = <2>; 320 atmel,nb-banks = <2>; 328 atmel,nb-banks = <3>; 335 atmel,nb-banks = <3>; 342 atmel,nb-banks = <3>; 350 atmel,nb-banks = <3>;
|
| H A D | at91sam9x5.dtsi | 1138 atmel,nb-banks = <1>; 1144 atmel,nb-banks = <2>; 1152 atmel,nb-banks = <2>; 1160 atmel,nb-banks = <3>; 1167 atmel,nb-banks = <3>; 1174 atmel,nb-banks = <3>; 1182 atmel,nb-banks = <3>;
|
| H A D | at91sam9g45.dtsi | 1183 atmel,nb-banks = <1>; 1189 atmel,nb-banks = <2>; 1197 atmel,nb-banks = <2>; 1205 atmel,nb-banks = <3>; 1212 atmel,nb-banks = <3>; 1219 atmel,nb-banks = <3>; 1227 atmel,nb-banks = <3>;
|
| /rk3399_rockchip-uboot/lib/ |
| H A D | gzip.c | 34 static void zfree(void *x, void *addr, unsigned nb) in zfree() argument
|
| H A D | gunzip.c | 41 void gzfree(void *x, void *addr, unsigned nb) in gzfree() argument
|
| /rk3399_rockchip-uboot/drivers/serial/ |
| H A D | usbtty.c | 919 unsigned int nb = 0; in fill_buffer() local 925 nb = endpoint->rcv_urb->actual_length; in fill_buffer() 926 buf_push (buf, src, nb); in fill_buffer() 930 return nb; in fill_buffer()
|
| /rk3399_rockchip-uboot/arch/arm/include/asm/arch-rockchip/ |
| H A D | clock.h | 94 unsigned int nb; member
|
| /rk3399_rockchip-uboot/drivers/clk/rockchip/ |
| H A D | clk_rk3368.c | 36 u32 nb; member 45 .nb = _nb, \ 168 div->nb = best_div->nb; in pll_para_config() 272 if (div->nb) in rkclk_set_pll() 273 clrsetbits_le32(&pll->con2, PLL_BWADJ_MASK, div->nb - 1); in rkclk_set_pll()
|
| H A D | clk_rk3288.c | 39 u32 nb; member 48 .nb = _nb, \ 255 if (div->nb) in rkclk_set_pll() 256 rk_clrsetreg(&pll->con2, PLL_BWADJ_MASK, div->nb - 1); in rkclk_set_pll() 382 div->nb = best_div->nb; in pll_para_config()
|
| /rk3399_rockchip-uboot/lib/bzip2/ |
| H A D | bzlib.c | 727 Int32 nb, na, mid; in BZ2_indexIntoF() local 728 nb = 0; in BZ2_indexIntoF() 731 mid = (nb + na) >> 1; in BZ2_indexIntoF() 732 if (indx >= cftab[mid]) nb = mid; else na = mid; in BZ2_indexIntoF() 734 while (na - nb != 1); in BZ2_indexIntoF() 735 return nb; in BZ2_indexIntoF()
|
| /rk3399_rockchip-uboot/drivers/i2c/ |
| H A D | designware_i2c.c | 319 int nb = len; in __dw_i2c_write() local 356 } else if (get_timer(start_time_tx) > (nb * I2C_BYTE_TO)) { in __dw_i2c_write()
|
| /rk3399_rockchip-uboot/drivers/usb/musb-new/ |
| H A D | musb_core.h | 347 struct notifier_block nb; member
|
| /rk3399_rockchip-uboot/doc/ |
| H A D | README.qemu-mips | 93 # Format as ext2 ( arg2 : nb blocks)
|