Searched refs:arr (Results 1 – 16 of 16) sorted by relevance
/u-boot/fs/ubifs/ |
A D | lprops.c | 73 heap->arr[hpos] = heap->arr[ppos]; in move_up_lpt_heap() 74 heap->arr[ppos] = lprops; in move_up_lpt_heap() 107 heap->arr[hpos] = heap->arr[ppos]; in adjust_lpt_heap() 138 heap->arr[hpos] = heap->arr[cpos]; in adjust_lpt_heap() 139 heap->arr[cpos] = lprops; in adjust_lpt_heap() 152 heap->arr[hpos] = heap->arr[cpos]; in adjust_lpt_heap() 192 lp = heap->arr[cpos]; in add_to_lpt_heap() 230 heap->arr[hpos] = heap->arr[heap->cnt]; in remove_from_lpt_heap() 772 lprops = heap->arr[0]; in ubifs_fast_find_free() 938 lprops = heap->arr[i]; in dbg_check_cats() [all …]
|
A D | lpt_commit.c | 839 c->lsave[cnt++] = heap->arr[i]->lnum; in populate_lsave() 845 c->lsave[cnt++] = heap->arr[i]->lnum; in populate_lsave() 851 c->lsave[cnt++] = heap->arr[i]->lnum; in populate_lsave() 1488 kfree(c->lpt_heap[i].arr); in ubifs_lpt_free() 1489 kfree(c->dirty_idx.arr); in ubifs_lpt_free() 2034 c->lsave[prandom_u32() % c->lsave_cnt] = heap->arr[i]->lnum; in dbg_populate_lsave() 2037 c->lsave[prandom_u32() % c->lsave_cnt] = heap->arr[i]->lnum; in dbg_populate_lsave() 2040 c->lsave[prandom_u32() % c->lsave_cnt] = heap->arr[i]->lnum; in dbg_populate_lsave()
|
A D | lpt.c | 1642 c->lpt_heap[i].arr = kmalloc(sizeof(void *) * LPT_HEAP_SZ, in lpt_init_rd() 1644 if (!c->lpt_heap[i].arr) in lpt_init_rd() 1650 c->dirty_idx.arr = kmalloc(sizeof(void *) * LPT_HEAP_SZ, GFP_KERNEL); in lpt_init_rd() 1651 if (!c->dirty_idx.arr) in lpt_init_rd() 2179 heap->arr[lprops->hpos] == lprops) in dbg_chk_pnode()
|
A D | ubifs.h | 1222 struct ubifs_lprops **arr; member
|
A D | debug.c | 905 struct ubifs_lprops *lprops = heap->arr[i]; in ubifs_dump_heap()
|
/u-boot/scripts/kconfig/ |
A D | streamline_config.pl | 334 my @arr; 337 @arr = @{$objects{$1}}; 340 $arr[$#arr+1] = $var; 344 $objects{$1} = \@arr; 400 my @arr = @{$objects{$module}}; 401 foreach my $conf (@arr) { 670 my @arr = @{$objects{$module}}; 671 foreach my $conf (@arr) { 677 foreach my $conf (@arr) {
|
A D | preprocess.c | 13 #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0])) argument
|
/u-boot/arch/powerpc/cpu/mpc8xxx/ |
A D | fsl_pamu.c | 342 static uint64_t find_max(uint64_t arr[], int num) in find_max() argument 347 if (arr[max] < arr[i]) in find_max() 350 return arr[max]; in find_max() 353 static uint64_t find_min(uint64_t arr[], int num) in find_min() argument 358 if (arr[min] > arr[i]) in find_min() 361 return arr[min]; in find_min()
|
/u-boot/drivers/timer/ |
A D | stm32_timer.c | 41 u32 arr; member 110 writel(GPT_FREE_RUNNING, ®s->arr); in stm32_timer_probe()
|
/u-boot/arch/arm/include/asm/arch-stv0991/ |
A D | stv0991_gpt.h | 22 u32 arr; member
|
/u-boot/arch/arm/cpu/armv7/stv0991/ |
A D | timer.c | 45 writel(GPT_FREE_RUNNING, &gpt1_regs_ptr->arr); in timer_init()
|
/u-boot/tools/ |
A D | sunxi-spl-image-builder.c | 18 #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0])) argument
|
/u-boot/lib/acpi/ |
A D | acpigen.c | 800 void acpigen_write_byte_buffer(struct acpi_ctx *ctx, u8 *arr, size_t size) in acpigen_write_byte_buffer() argument 809 acpigen_emit_byte(ctx, arr[i]); in acpigen_write_byte_buffer() 814 void acpigen_write_return_byte_buffer(struct acpi_ctx *ctx, u8 *arr, in acpigen_write_return_byte_buffer() argument 818 acpigen_write_byte_buffer(ctx, arr, size); in acpigen_write_return_byte_buffer()
|
/u-boot/fs/ext4/ |
A D | ext4_common.c | 715 static int parse_path(char **arr, char *dirname) in parse_path() argument 721 arr[i] = zalloc(strlen("/") + 1); in parse_path() 722 if (!arr[i]) in parse_path() 724 memcpy(arr[i++], "/", strlen("/")); in parse_path() 728 arr[i] = zalloc(strlen(token) + 1); in parse_path() 729 if (!arr[i]) in parse_path() 731 memcpy(arr[i++], token, strlen(token)); in parse_path() 734 arr[i] = NULL; in parse_path()
|
/u-boot/include/acpi/ |
A D | acpigen.h | 713 void acpigen_write_return_byte_buffer(struct acpi_ctx *ctx, u8 *arr,
|
/u-boot/lib/ |
A D | bch.c | 88 #define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0])) argument
|
Completed in 40 milliseconds