Home
last modified time | relevance | path

Searched refs:first (Results 1 – 25 of 226) sorted by relevance

12345678910

/rk3399_rockchip-uboot/arch/powerpc/lib/
H A Dextable.c35 search_one_table(const struct exception_table_entry *first, in search_one_table() argument
40 while (first <= last) { in search_one_table()
41 diff = first->insn - value; in search_one_table()
43 return first->fixup; in search_one_table()
44 first++; in search_one_table()
/rk3399_rockchip-uboot/arch/arm/include/asm/
H A Dopcodes.h147 #define __opcode_thumb32_compose(first, second) ( \ argument
148 (___opcode_identity32(___opcode_identity16(first)) << 16) \
153 #define ___asm_opcode_thumb32_compose(first, second) ( \ argument
154 (___asm_opcode_identity32(___asm_opcode_identity16(first)) << 16) \
221 #define ___inst_thumb32(first, second) .short first, second
225 #define ___inst_thumb32(first, second) \ argument
226 ".short " __stringify(first) ", " __stringify(second) "\n\t"
/rk3399_rockchip-uboot/include/linux/
H A Dlist.h253 struct list_head *first = list->next; in __list_splice() local
256 first->prev = prev; in __list_splice()
257 prev->next = first; in __list_splice()
544 struct hlist_node *first; member
551 #define HLIST_HEAD_INIT { .first = NULL }
552 #define HLIST_HEAD(name) struct hlist_head name = { .first = NULL }
553 #define INIT_HLIST_HEAD(ptr) ((ptr)->first = NULL)
567 return !h->first; in hlist_empty()
596 struct hlist_node *first = h->first; in hlist_add_head() local
597 n->next = first; in hlist_add_head()
[all …]
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc8xxx/
H A Dsrio.c77 int idx, first, last; in srio_erratum_a004034() local
135 first = serdes_get_first_lane(SRIO2); in srio_erratum_a004034()
137 first = serdes_get_first_lane(SRIO1); in srio_erratum_a004034()
138 if (unlikely(first < 0)) in srio_erratum_a004034()
141 last = first; in srio_erratum_a004034()
143 last = first + 3; in srio_erratum_a004034()
148 for (idx = first; idx <= last; idx++) in srio_erratum_a004034()
155 for (idx = first; idx <= last; idx++) in srio_erratum_a004034()
165 for (idx = first; idx <= last; idx++) in srio_erratum_a004034()
172 for (idx = first; idx <= last; idx++) in srio_erratum_a004034()
/rk3399_rockchip-uboot/fs/jffs2/
H A Dmini_inflate.c44 stream->codes.first = stream->code_first; in init_stream()
52 stream->lengths.first = stream->length_first; in init_stream()
60 stream->distance.first = stream->distance_first; in init_stream()
127 while (!(set->count[bits] && code < set->first[bits] + in read_symbol()
136 return set->symbols[set->pos[bits] + code - set->first[bits]]; in read_symbol()
192 set->first[i] = code; in fill_code_tables()
210 cramfs_memset(set->first, 0, set->bits); in init_code_tables()
327 cramfs_memset(lengths->first, 0, 16); in decompress_fixed()
337 cramfs_memset(distance->first, 0, 16); in decompress_fixed()
/rk3399_rockchip-uboot/cmd/
H A Dcpu.c32 bool first = true; in print_cpu_list() local
52 printf("%s%s", first ? ": " : ", ", in print_cpu_list()
54 first = false; in print_cpu_list()
H A Dbootmenu.c38 struct bootmenu_entry *first; /* first menu entry */ member
219 iter = menu->first; in bootmenu_choice_entry()
235 struct bootmenu_entry *iter = menu->first; in bootmenu_destroy()
265 menu->first = NULL; in bootmenu_create()
304 menu->first = entry; in bootmenu_create()
341 menu->first = entry; in bootmenu_create()
395 for (iter = bootmenu->first; iter; iter = iter->next) { in bootmenu_show()
H A Defi.c171 bool first; in efi_print_mem_table() local
176 for (j = 0, first = true; j < ARRAY_SIZE(mem_attr); j++) { in efi_print_mem_table()
178 if (first) in efi_print_mem_table()
179 first = false; in efi_print_mem_table()
H A Dflash.c52 int bank, first, last; in abbrev_spec() local
69 first = simple_strtoul (str, &ep, 10); in abbrev_spec()
70 if (ep == str || *ep != '\0' || first >= fp->sector_count) in abbrev_spec()
76 last < first || last >= fp->sector_count) in abbrev_spec()
79 last = first; in abbrev_spec()
83 *psf = first; in abbrev_spec()
/rk3399_rockchip-uboot/drivers/demo/
H A Ddemo-shape.c47 int first = 0; in shape_hello() local
60 first = 1; in shape_hello()
64 putc(first ? *colour++ : ch); in shape_hello()
66 first = 0; in shape_hello()
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/
H A Dfsl_corenet_serdes.c200 int first) in __serdes_get_lane_count() argument
204 for (lane = first; lane < SRDS_MAX_LANES; lane++) { in __serdes_get_lane_count()
209 return lane - first; in __serdes_get_lane_count()
216 int lane, idx, first, last; in __serdes_reset_rx() local
221 first = serdes_get_lane_idx(lane); in __serdes_reset_rx()
222 last = first + __serdes_get_lane_count(prtcl, device, lane); in __serdes_reset_rx()
228 for (idx = first; idx < last; idx++) in __serdes_reset_rx()
238 for (idx = first; idx < last; idx++) in __serdes_reset_rx()
/rk3399_rockchip-uboot/tools/
H A Drkmux.py56 self.first = True
64 if not self.first:
96 if self.first:
97 self.first = False
/rk3399_rockchip-uboot/scripts/dtc/
H A Dlivetree.c77 struct property *chain_property(struct property *first, struct property *list) in chain_property() argument
79 assert(first->next == NULL); in chain_property()
81 first->next = list; in chain_property()
82 return first; in chain_property()
85 struct property *reverse_properties(struct property *first) in reverse_properties() argument
87 struct property *p = first; in reverse_properties()
241 struct node *chain_node(struct node *first, struct node *list) in chain_node() argument
243 assert(first->next_sibling == NULL); in chain_node()
245 first->next_sibling = list; in chain_node()
246 return first; in chain_node()
[all …]
H A Ddtc.h198 struct property *chain_property(struct property *first, struct property *list);
199 struct property *reverse_properties(struct property *first);
204 struct node *chain_node(struct node *first, struct node *list);
245 struct reserve_info *chain_reserve_entry(struct reserve_info *first,
/rk3399_rockchip-uboot/drivers/pinctrl/meson/
H A Dpinctrl-meson.h86 unsigned int first; member
120 .first = f, \
/rk3399_rockchip-uboot/doc/device-tree-bindings/gpio/
H A Dnvidia,tegra20-gpio.txt9 - #gpio-cells : Should be two. The first cell is the pin number and the
14 The first cell is the GPIO number.
/rk3399_rockchip-uboot/tools/patman/test/
H A D0001-pci-Correct-cast-for-sandbox.patch21 from the first commit
26 the first commit
H A Dtest01.txt19 from the first commit
24 the first commit
/rk3399_rockchip-uboot/doc/device-tree-bindings/misc/
H A Dintel,irq-router.txt23 first cell is the register offset that controls the first PIRQ link routing.
28 encoded as 3 cells a group for a device. The first cell is the device's PCI
/rk3399_rockchip-uboot/doc/
H A DREADME.bootmenu27 <delay> is the autoboot delay in seconds, after which the first
38 (title and commands are separated by first appearance of '='
46 the console (or on the screen) and the command of the first menu entry will
57 setenv bootmenu_0 Boot 1. kernel=bootm 0x82000000 # Set first menu entry
/rk3399_rockchip-uboot/arch/mips/mach-ath79/qca953x/
H A Dddr.c415 u32 val, pass, tap, cnt, tap_val, last, first; in ddr_tap_tuning() local
421 first = DDR_TAP_MAGIC_VAL; in ddr_tap_tuning()
454 if (first != DDR_TAP_MAGIC_VAL) { in ddr_tap_tuning()
457 first = tap; in ddr_tap_tuning()
466 tap_val = (first + last) / 2; in ddr_tap_tuning()
/rk3399_rockchip-uboot/board/phytec/pcm058/
H A DREADME28 DIP-1 set to off: Boot first from NAND, then try SPI
29 DIP-1 set to on: Boot first from SD, then try SPI
/rk3399_rockchip-uboot/doc/uImage.FIT/
H A Dverified-boot.txt76 1. Master private key is used by the signer to sign a first-stage image.
79 3. Secondary public key is placed in first stage images
80 4. We use the master public key to verify the first-stage image. We then
81 use the secondary public key in the first-stage image to verify the second-
/rk3399_rockchip-uboot/drivers/block/
H A Dblk_legacy.c78 bool first = true; in blk_list_part() local
88 if (!first) in blk_list_part()
91 first = false; in blk_list_part()
/rk3399_rockchip-uboot/drivers/usb/host/
H A Dehci-hcd.c1167 struct QH *first; member
1263 result->first = memalign(USB_DMA_MINALIGN, in _ehci_create_int_queue()
1265 if (!result->first) { in _ehci_create_int_queue()
1269 result->current = result->first; in _ehci_create_int_queue()
1270 result->last = result->first + queuesize - 1; in _ehci_create_int_queue()
1277 memset(result->first, 0, sizeof(struct QH) * queuesize); in _ehci_create_int_queue()
1283 struct QH *qh = result->first + i; in _ehci_create_int_queue()
1336 flush_dcache_range((unsigned long)result->first, in _ehci_create_int_queue()
1337 ALIGN_END_ADDR(struct QH, result->first, in _ehci_create_int_queue()
1353 list->qh_link = cpu_to_hc32((unsigned long)result->first | QH_LINK_TYPE_QH); in _ehci_create_int_queue()
[all …]

12345678910