/busybox-1.35.0/scripts/kconfig/ |
D | expr.c | 20 e->left.sym = sym; in expr_alloc_symbol() 29 e->left.expr = ce; in expr_alloc_one() 38 e->left.expr = e1; in expr_alloc_two() 48 e->left.sym = s1; in expr_alloc_comp() 78 e->left = org->left; in expr_copy() 81 e->left.expr = expr_copy(org->left.expr); in expr_copy() 85 e->left.sym = org->left.sym; in expr_copy() 91 e->left.expr = expr_copy(org->left.expr); in expr_copy() 113 expr_free(e->left.expr); in expr_free() 120 expr_free(e->left.expr); in expr_free() [all …]
|
D | menu.c | 84 e->left.expr = menu_check_dep(e->left.expr); in menu_check_dep() 88 e->left.expr = menu_check_dep(e->left.expr); in menu_check_dep() 93 if (e->left.sym == &symbol_mod) in menu_check_dep() 195 if (!menu_range_valid_sym(sym, prop->expr->left.sym) || in sym_check_prop() 309 for (ep = &prop->expr; *ep; ep = &(*ep)->left.expr) in menu_finalize()
|
D | symbol.c | 180 val2 = sym_get_range_val(prop->expr->left.sym, base); in sym_validate_range() 250 for (e = prop->expr; e; e = e->left.expr) { in sym_calc_choice() 363 for (e = prop->expr; e; e = e->left.expr) { in sym_calc_value() 445 for (e = prop->expr; e; e = e->left.expr) { in sym_set_tristate_value() 542 return val >= sym_get_range_val(prop->expr->left.sym, 10) && in sym_string_within_range() 551 return val >= sym_get_range_val(prop->expr->left.sym, 16) && in sym_string_within_range() 769 sym = sym_check_expr_deps(e->left.expr); in sym_check_expr_deps() 774 return sym_check_expr_deps(e->left.expr); in sym_check_expr_deps() 777 sym = sym_check_deps(e->left.sym); in sym_check_expr_deps() 782 return sym_check_deps(e->left.sym); in sym_check_expr_deps() [all …]
|
D | expr.h | 45 union expr_data left, right; member 181 return !e || (e->type == E_SYMBOL && e->left.sym == &symbol_yes); in expr_is_yes() 186 return e && (e->type == E_SYMBOL && e->left.sym == &symbol_no); in expr_is_no()
|
D | zconf.y | 80 %left T_OR 81 %left T_AND 82 %left T_EQUAL T_UNEQUAL
|
D | confdata.c | 321 for (e = prop->expr; e; e = e->left.expr) in conf_read()
|
D | zconf.tab.c_shipped | 855 /* Nonzero means print parse trace. It is left uninitialized so that
|
/busybox-1.35.0/shell/ |
D | brace.txt | 10 to each resulting string, expanding left to right. 13 are not sorted; left to right order is preserved. For example, 30 expression. Any incorrectly formed brace expansion is left unchanged.
|
/busybox-1.35.0/editors/ |
D | ed.c | 132 int left; in findString() local 136 left = lp->len - offset - len; in findString() 138 while (left >= 0) { in findString() 139 ncp = memchr(cp, str[0], left + 1); in findString() 142 left -= (ncp - cp); in findString() 147 left--; in findString()
|
D | sed1line.txt | 37 # number each line of a file (simple left alignment). Using a tab (see 41 # number each line of a file (number on left, right-aligned) 74 # aligns all text flush left
|
/busybox-1.35.0/archival/libarchive/unxz/ |
D | xz_dec_lzma2.c | 351 uint32_t left; in dict_repeat() local 356 left = min_t(size_t, dict->limit - dict->pos, *len); in dict_repeat() 357 *len -= left; in dict_repeat() 367 } while (--left > 0); in dict_repeat() 377 struct dictionary *dict, struct xz_buf *b, uint32_t *left) in dict_uncompressed() argument 381 while (*left > 0 && b->in_pos < b->in_size in dict_uncompressed() 387 if (copy_size > *left) in dict_uncompressed() 388 copy_size = *left; in dict_uncompressed() 390 *left -= copy_size; in dict_uncompressed()
|
/busybox-1.35.0/shell/hush_test/hush-parsing/ |
D | and_or_and_backgrounding.tests | 16 #evaluated with left associativity. For example, both of the following
|
/busybox-1.35.0/shell/ash_test/ash-parsing/ |
D | and_or_and_backgrounding.tests | 16 #evaluated with left associativity. For example, both of the following
|
/busybox-1.35.0/examples/ |
D | inittab | 18 # field is left blank, then the init's stdin/out will be used.
|
/busybox-1.35.0/miscutils/ |
D | bc.c | 3840 bool left = bc_operation_LEFT(type - XC_LEX_1st_op); in bc_parse_operator() local 3847 if (l >= r && (l != r || !left)) break; in bc_parse_operator() 5971 BcResult *left, *right, res; in zxc_program_assign() local 5976 s = zxc_program_binOpPrep(&left, &l, &right, &r, assign); in zxc_program_assign() 5979 ib = left->t == XC_RESULT_IBASE; in zxc_program_assign() 5980 sc = left->t == XC_RESULT_SCALE; in zxc_program_assign() 5986 if (left->t != XC_RESULT_VAR) in zxc_program_assign() 5988 v = xc_program_search(left->d.id.name, BC_TYPE_VAR); in zxc_program_assign() 5994 if (left->t == XC_RESULT_CONSTANT in zxc_program_assign() 5995 || left->t == XC_RESULT_TEMP in zxc_program_assign() [all …]
|
/busybox-1.35.0/docs/ |
D | style-guide.txt | 143 Put a space between C keywords and left parens, but not between function names 144 and the left paren that starts it's parameter list (whether it is being 163 Also, don't put a space between the left paren and the first term, nor between
|
/busybox-1.35.0/libbb/ |
D | Config.src | 321 With this option on, right-to-left Unicode characters
|