Home
last modified time | relevance | path

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

12

/xen/xen/tools/kconfig/
A Dexpr.c78 e->left = org->left; in expr_copy()
81 e->left.expr = expr_copy(org->left.expr); in expr_copy()
89 e->left.sym = org->left.sym; in expr_copy()
95 e->left.expr = expr_copy(org->left.expr); in expr_copy()
169 e1->left.sym == e2->left.sym && in __expr_eliminate_eq()
268 return e1->left.sym == e2->left.sym; in expr_eq()
278 e1->left.sym == e2->left.sym); in expr_eq()
319 if (e->left.expr->left.sym == &symbol_no) { in expr_eliminate_yn()
446 sym2 = e2->left.expr->left.sym; in expr_join_or()
510 sym2 = e2->left.expr->left.sym; in expr_join_and()
[all …]
A Dexpr.h44 union expr_data left, right; member
52 for (e = (l); e && (s = e->right.sym); e = e->left.expr)
320 return !e || (e->type == E_SYMBOL && e->left.sym == &symbol_yes); in expr_is_yes()
325 return e && (e->type == E_SYMBOL && e->left.sym == &symbol_no); in expr_is_no()
A Dmenu.c88 e->left.expr = rewrite_m(e->left.expr); in rewrite_m()
92 e->left.expr = rewrite_m(e->left.expr); in rewrite_m()
97 if (e->left.sym == &symbol_mod) in rewrite_m()
280 if (!menu_validate_number(sym, prop->expr->left.sym) || in sym_check_prop()
527 for (ep = &prop->expr; *ep; ep = &(*ep)->left.expr) in menu_finalize()
A Dsymbol.c138 val2 = sym_get_range_val(prop->expr->left.sym, base); in sym_validate_range()
517 for (e = prop->expr; e; e = e->left.expr) { in sym_set_tristate_value()
611 return val >= sym_get_range_val(prop->expr->left.sym, 10) && in sym_string_within_range()
620 return val >= sym_get_range_val(prop->expr->left.sym, 16) && in sym_string_within_range()
1134 sym = sym_check_expr_deps(e->left.expr); in sym_check_expr_deps()
1139 return sym_check_expr_deps(e->left.expr); in sym_check_expr_deps()
1146 sym = sym_check_deps(e->left.sym); in sym_check_expr_deps()
1151 return sym_check_deps(e->left.sym); in sym_check_expr_deps()
1302 return prop->expr->left.sym; in prop_get_symbol()
A Dparser.y87 %left T_OR
88 %left T_AND
89 %left T_EQUAL T_UNEQUAL
90 %left T_LESS T_LESS_EQUAL T_GREATER T_GREATER_EQUAL
/xen/xen/arch/x86/x86_64/compat/
A Dmm.c285 unsigned int left = arg1 & ~MMU_UPDATE_PREEMPTED; in compat_mmuext_op() local
287 BUG_ON(left == arg1 && left != i); in compat_mmuext_op()
288 BUG_ON(left > count); in compat_mmuext_op()
289 guest_handle_add_offset(nat_ops, i - left); in compat_mmuext_op()
290 guest_handle_subtract_offset(cmp_uops, left); in compat_mmuext_op()
291 left = 1; in compat_mmuext_op()
294 BUG_ON(!hypercall_xlat_continuation(&left, 4, 0x01, nat_ops, in compat_mmuext_op()
302 BUG_ON(hypercall_xlat_continuation(&left, 4, 0)); in compat_mmuext_op()
303 BUG_ON(left != arg1); in compat_mmuext_op()
/xen/tools/libxc/
A Dxc_dom_bzimageloader.c412 size_t left = dom->kernel_size; in xc_try_lzo1x_decode() local
442 left -= 16; in xc_try_lzo1x_decode()
448 if ( left ) in xc_try_lzo1x_decode()
449 --left; in xc_try_lzo1x_decode()
463 if ( left > ret ) in xc_try_lzo1x_decode()
466 if ( left < ret ) in xc_try_lzo1x_decode()
472 left -= ret; in xc_try_lzo1x_decode()
480 if ( left < 4 ) in xc_try_lzo1x_decode()
499 if ( left < 12 ) in xc_try_lzo1x_decode()
504 left -= 12; in xc_try_lzo1x_decode()
[all …]
A Dxc_misc.c737 unsigned int *done, unsigned int *left) in xc_livepatch_list() argument
754 !metadata || !metadata_len || !done || !left ) in xc_livepatch_list()
775 *left = 0; in xc_livepatch_list()
889 *left = sysctl.u.livepatch.u.list.nr; /* Total remaining count. */ in xc_livepatch_list()
914 } while ( adjust || (*done < max && *left != 0) ); in xc_livepatch_list()
/xen/xen/arch/x86/boot/
A Dmkelf32.c217 int done, left = len; in do_write() local
220 while ( left != 0 ) in do_write()
222 if ( (done = write(fd, p, left)) == -1 ) in do_write()
231 left -= done; in do_write()
238 int done, left = len; in do_read() local
241 while ( left != 0 ) in do_read()
243 if ( (done = read(fd, p, left)) == -1 ) in do_read()
252 left -= done; in do_read()
/xen/xen/arch/arm/
A Dguestcopy.c145 unsigned long left; in access_guest_memory_by_ipa() local
150 left = copy_guest(buf, gpa, size, GPA_INFO(d), flags); in access_guest_memory_by_ipa()
152 return (!left) ? 0 : -EINVAL; in access_guest_memory_by_ipa()
A DKconfig.debug249 int "Early printk, left-shift to apply to the register offsets within the 8250 UART"
251 EARLY_UART_8250_REG_SHIFT is, optionally, the left-shift to
/xen/tools/misc/
A Dxen-livepatch.c69 unsigned int nr, done, left, i; in list_func() local
83 done = left = 0; in list_func()
129 metadata, metadata_len, metadata_total_size, &done, &left); in list_func()
130 if ( rc || done != nr || left > 0) in list_func()
135 left, nr, rc, strerror(rc)); in list_func()
/xen/xen/include/public/io/
A Dlibxenvchan.h69 struct ring_shared left, right; member
/xen/tools/ocaml/libs/xs/
A Dxs.ml87 let left = ref timeout in
100 let r, _, _ = Unix.select [ fd ] [] [] (min max_blocking_time !left) in
108 while !left > 0. && not(!success)
126 (* Update the time left *)
128 left := end_time -. current_time
/xen/tools/xenstore/
A Dtdb.c536 tdb_off right, left; local
555 goto left;
562 goto left;
568 left:
570 left = offset - sizeof(tdb_off);
571 if (left > TDB_DATA_START(tdb->header.hash_size)) {
576 if (ofs_read(tdb, left, &leftsize) == -1) {
580 left = offset - leftsize;
583 if (tdb_read(tdb, left, &l, sizeof(l), DOCONV()) == -1) {
590 if (remove_from_freelist(tdb, left, l.next) == -1) {
[all …]
/xen/xen/common/xz/
A Ddec_lzma2.c349 uint32_t left; in dict_repeat() local
354 left = min_t(size_t, dict->limit - dict->pos, *len); in dict_repeat()
355 *len -= left; in dict_repeat()
365 } while (--left > 0); in dict_repeat()
375 uint32_t *left) in dict_uncompressed() argument
379 while (*left > 0 && b->in_pos < b->in_size in dict_uncompressed()
385 if (copy_size > *left) in dict_uncompressed()
386 copy_size = *left; in dict_uncompressed()
388 *left -= copy_size; in dict_uncompressed()
/xen/xen/arch/arm/arm32/lib/
A Dlib1funcs.S50 @ Initially shift the divisor left 3 bits if possible,
52 @ at the left end of each 4 bit nibbles in the division loop
188 @ Either 1, 2 or 3 comparison/substractions are left.
A Dmemzero.S121 tst r1, #1 @ 1 a byte left over
/xen/tools/xenstat/xentop/
A DTODO15 Like Top, ordering of domain columns, o feature Capital letter shifts left,
/xen/docs/misc/arm/
A Dearly-printk.txt20 - CONFIG_EARLY_UART_8250_REG_SHIFT is, optionally, the left-shift to
/xen/tools/ocaml/libs/xb/
A Dxb.ml119 let left = String.sub s sz (len - sz) in
120 con.partial_out <- left
/xen/tools/libvchan/
A Dinit.c92 ctrl->read.shr = &ctrl->ring->left; in init_gnt_srv()
155 ctrl->write.shr = &ctrl->ring->left; in init_gnt_cli()
/xen/tools/debugger/kdd/
A Dkdd.c230 size_t left = count; in blocking_write() local
232 while (left > 0 && ((r = write(fd, buf, left)) >= 0 || errno == EINTR)) { in blocking_write()
234 left -= r; in blocking_write()
236 return count - left; in blocking_write()
/xen/tools/ocaml/xenstored/
A Ddomain.ml31 mutable io_credit: int; (* the rounds of ring process left to do, default is 0,
/xen/xen/arch/x86/
A Dtraps.c748 unsigned int left; in fatal_trap() local
751 left = cpumask_weight(&show_state_mask); in fatal_trap()
752 if ( left < pending ) in fatal_trap()
754 pending = left; in fatal_trap()

Completed in 39 milliseconds

12