Home
last modified time | relevance | path

Searched refs:left (Results 1 – 25 of 71) sorted by relevance

123

/rk3399_rockchip-uboot/scripts/kconfig/
H A Dexpr.c21 e->left.sym = sym; in expr_alloc_symbol()
29 e->left.expr = ce; in expr_alloc_one()
37 e->left.expr = e1; in expr_alloc_two()
46 e->left.sym = s1; in expr_alloc_comp()
76 e->left = org->left; in expr_copy()
79 e->left.expr = expr_copy(org->left.expr); in expr_copy()
87 e->left.sym = org->left.sym; in expr_copy()
93 e->left.expr = expr_copy(org->left.expr); in expr_copy()
115 expr_free(e->left.expr); in expr_free()
126 expr_free(e->left.expr); in expr_free()
[all …]
H A Dexpr.h44 union expr_data left, right; member
52 for (e = (l); e && (s = e->right.sym); e = e->left.expr)
228 return !e || (e->type == E_SYMBOL && e->left.sym == &symbol_yes); in expr_is_yes()
233 return e && (e->type == E_SYMBOL && e->left.sym == &symbol_no); in expr_is_no()
H A Dmenu.c89 e->left.expr = menu_check_dep(e->left.expr); in menu_check_dep()
93 e->left.expr = menu_check_dep(e->left.expr); in menu_check_dep()
98 if (e->left.sym == &symbol_mod) in menu_check_dep()
276 if (!menu_validate_number(sym, prop->expr->left.sym) || in sym_check_prop()
418 for (ep = &prop->expr; *ep; ep = &(*ep)->left.expr) in menu_finalize()
H A Dsymbol.c176 val2 = sym_get_range_val(prop->expr->left.sym, base); in sym_validate_range()
545 for (e = prop->expr; e; e = e->left.expr) { in sym_set_tristate_value()
639 return val >= sym_get_range_val(prop->expr->left.sym, 10) && in sym_string_within_range()
648 return val >= sym_get_range_val(prop->expr->left.sym, 16) && in sym_string_within_range()
1197 sym = sym_check_expr_deps(e->left.expr); in sym_check_expr_deps()
1202 return sym_check_expr_deps(e->left.expr); in sym_check_expr_deps()
1209 sym = sym_check_deps(e->left.sym); in sym_check_expr_deps()
1214 return sym_check_deps(e->left.sym); in sym_check_expr_deps()
1354 return prop->expr->left.sym; in prop_get_symbol()
/rk3399_rockchip-uboot/cmd/
H A Dtest.c57 int i, op, left, adv, expr, last_expr, last_unop, last_binop; in do_test() local
66 left = 1; in do_test()
67 while (argv[left]) in do_test()
68 debug(" '%s'", argv[left++]); in do_test()
72 left = argc - 1; in do_test()
78 while (left > 0) { in do_test()
80 if (left <= op_adv[i].arg) in do_test()
92 if (left < adv) { in do_test()
175 ap += adv; left -= adv; in do_test()
/rk3399_rockchip-uboot/lib/zlib/
H A Dinftrees.c42 int left; /* number of prefix codes available */ in inflate_table() local
127 left = 1; in inflate_table()
129 left <<= 1; in inflate_table()
130 left -= count[len]; in inflate_table()
131 if (left < 0) return -1; /* over-subscribed */ in inflate_table()
133 if (left > 0 && (type == CODES || max != 1)) in inflate_table()
266 left = (int)(1 << curr); in inflate_table()
268 left -= count[curr + drop]; in inflate_table()
269 if (left <= 0) break; in inflate_table()
271 left <<= 1; in inflate_table()
H A Dinflate.c181 left = strm->avail_out; \
192 strm->avail_out = left; \
333 unsigned have, left; /* available input and output */ in inflate() local
357 out = left; in inflate()
597 if (copy > left) copy = left; in inflate()
602 left -= copy; in inflate()
725 if (have >= 6 && left >= 258) { in inflate()
813 if (state->offset > state->whave + out - left) { in inflate()
821 if (left == 0) goto inf_leave; in inflate()
822 copy = out - left; in inflate()
[all …]
/rk3399_rockchip-uboot/post/lib_powerpc/
H A Dcomplex.c56 int left; in cpu_post_test_complex_2() local
63 left = cpu_post_complex_2_asm(x, n); in cpu_post_test_complex_2()
64 left *= 1 - x; in cpu_post_test_complex_2()
73 if (left != right) in cpu_post_test_complex_2()
/rk3399_rockchip-uboot/fs/ext4/
H A Dext4_sparse.c64 long left = blocks; /* signed long ! */ in flash_write_data() local
81 while (left > 0) { in flash_write_data()
82 if (left < step) in flash_write_data()
83 blks = left; in flash_write_data()
93 left -= step; in flash_write_data()
103 long left = blocks; /* signed long ! */ in flash_fill_data() local
118 while (left > 0) { in flash_fill_data()
119 if (left < step) in flash_fill_data()
120 blks = left; in flash_fill_data()
130 left -= step; in flash_fill_data()
/rk3399_rockchip-uboot/arch/arm/mach-tegra/tegra20/
H A Dcrypto.c53 u8 left[AES_KEY_LENGTH]; in sign_object() local
64 aes_cbc_encrypt_blocks(key_schedule, tmp_data, left, 1); in sign_object()
66 left_shift_vector(left, k1, sizeof(left)); in sign_object()
68 if ((left[0] >> 7) != 0) /* get MSB of L */ in sign_object()
/rk3399_rockchip-uboot/drivers/i2c/
H A Dtegra186_bpmp_i2c.c44 int left, i, ret; in tegra186_bpmp_i2c_xfer() local
49 left = ARRAY_SIZE(req.xfer.data_buf); in tegra186_bpmp_i2c_xfer()
54 if ((len >= BIT(16)) || (len > left)) in tegra186_bpmp_i2c_xfer()
76 left = resp.xfer.data_size; in tegra186_bpmp_i2c_xfer()
77 if (left > ARRAY_SIZE(resp.xfer.data_buf)) in tegra186_bpmp_i2c_xfer()
/rk3399_rockchip-uboot/drivers/usb/gadget/
H A Df_thor.c146 long long int *left, in download_head() argument
193 *left = left_to_rcv + buf - transfer_buffer; in download_head()
195 *left, left_to_rcv, buf); in download_head()
211 static int download_tail(long long int left, int cnt) in download_tail() argument
217 debug("%s: left: %llu cnt: %d\n", __func__, left, cnt); in download_tail()
231 if (left) { in download_tail()
232 ret = dfu_write(dfu_entity, transfer_buffer, left, cnt++); in download_tail()
234 pr_err("DFU write failed [%d]: left: %llu", ret, left); in download_tail()
256 static long long int left, ret_head; in process_rqt_download() local
302 &left, &cnt); in process_rqt_download()
[all …]
/rk3399_rockchip-uboot/lib/
H A Dsha512.c240 unsigned int left; in sha512_update() local
245 left = (unsigned int)(ctx->total[0] & 0x7F); in sha512_update()
246 fill = 128 - left; in sha512_update()
253 if (left && ilen >= fill) { in sha512_update()
254 memcpy((void *)(ctx->buffer + left), input, fill); in sha512_update()
261 left = 0; in sha512_update()
273 memcpy((void *)(ctx->buffer + left), input, ilen); in sha512_update()
H A Dsha256.c229 uint32_t left, fill; in sha256_update() local
242 left = ctx->total[0] & 0x3F; in sha256_update()
243 fill = 64 - left; in sha256_update()
251 if (left && length >= fill) { in sha256_update()
252 memcpy((void *) (ctx->buffer + left), (void *) input, fill); in sha256_update()
256 left = 0; in sha256_update()
264 memcpy((void *) (ctx->buffer + left), (void *) input, length); in sha256_update()
H A Dsha1.c269 unsigned long left; in sha1_update() local
281 left = ctx->total[0] & 0x3F; in sha1_update()
282 fill = 64 - left; in sha1_update()
290 if (left && ilen >= fill) { in sha1_update()
291 memcpy ((void *) (ctx->buffer + left), (void *) input, fill); in sha1_update()
295 left = 0; in sha1_update()
303 memcpy ((void *) (ctx->buffer + left), (void *) input, ilen); in sha1_update()
/rk3399_rockchip-uboot/test/py/
H A Dmultiplexed_log.css32 padding-left: 5px
37 margin-left: -5px;
/rk3399_rockchip-uboot/doc/device-tree-bindings/video/
H A Ddisplaymode.txt8 - left-margin, right-margin, hsync-len: Horizontal Display timing
35 left-margin = <25>;
/rk3399_rockchip-uboot/drivers/spi/
H A Drockchip_sfc.c742 u16 right, left = 0; in rockchip_sfc_delay_lines_tuning() local
776 left = right; in rockchip_sfc_delay_lines_tuning()
788 if (dll_valid && (right - left) >= SFC_DLL_TRANING_VALID_WINDOW) { in rockchip_sfc_delay_lines_tuning()
789 if (left == 0 && right < cell_max) in rockchip_sfc_delay_lines_tuning()
790 sfc->dll_cells[cs] = left + (right - left) * 2 / 5; in rockchip_sfc_delay_lines_tuning()
792 sfc->dll_cells[cs] = left + (right - left) / 2; in rockchip_sfc_delay_lines_tuning()
799 left, right, sfc->dll_cells[cs], sfc->speed[cs], in rockchip_sfc_delay_lines_tuning()
809 left, right, sfc->speed[cs]); in rockchip_sfc_delay_lines_tuning()
/rk3399_rockchip-uboot/drivers/dfu/
H A Ddfu.c562 unsigned long dfu_buf_size, write, left = size; in dfu_write_from_mem_addr() local
575 for (i = 0; left > 0; i++) { in dfu_write_from_mem_addr()
576 write = min(dfu_buf_size, left); in dfu_write_from_mem_addr()
579 dp, left, write); in dfu_write_from_mem_addr()
587 left -= write; in dfu_write_from_mem_addr()
/rk3399_rockchip-uboot/board/freescale/mx28evk/
H A DREADME23 * VDD 5V: To the left (off)
32 * VDD 5V: To the left (off)
/rk3399_rockchip-uboot/tools/rockchip/
H A Dresource_tool.c228 unsigned long left; in sha1_update() local
233 left = ctx->total[0] & 0x3F; in sha1_update()
234 fill = 64 - left; in sha1_update()
242 if (left && ilen >= fill) { in sha1_update()
243 memcpy ((void *) (ctx->buffer + left), (void *) input, fill); in sha1_update()
247 left = 0; in sha1_update()
257 memcpy ((void *) (ctx->buffer + left), (void *) input, ilen); in sha1_update()
479 uint32_t left, fill; in sha256_update() local
484 left = ctx->total[0] & 0x3F; in sha256_update()
485 fill = 64 - left; in sha256_update()
[all …]
/rk3399_rockchip-uboot/arch/arm/dts/
H A Dtegra20-medcom-wide.dts51 left-margin = <2>;
H A Dtegra20-tec.dts63 left-margin = <120>;
/rk3399_rockchip-uboot/doc/
H A DREADME.plan911 If no command line arguments or bootargs are defined, CONFADDR is left
/rk3399_rockchip-uboot/arch/arm/mach-bcm283x/include/mach/
H A Dmbox.h436 u32 left; member
442 u32 left; member

123