Home
last modified time | relevance | path

Searched refs:set (Results 1 – 25 of 1643) sorted by relevance

12345678910>>...66

/dflybsd-src/tools/regression/bin/sh/parameters/
H A Dpositional2.022 testcase 'set -- a b; set -- p$@q' '2|pa|bq'
23 testcase 'set -- a b; set -- $@q' '2|a|bq'
24 testcase 'set -- a b; set -- p$@' '2|pa|b'
25 testcase 'set -- a b; set -- p$@q' '2|pa|bq'
26 testcase 'set -- a b; set -- $@q' '2|a|bq'
27 testcase 'set -- a b; set -- p$@' '2|pa|b'
28 testcase 'set -- a b; set -- p$*q' '2|pa|bq'
29 testcase 'set -- a b; set -- $*q' '2|a|bq'
30 testcase 'set -- a b; set -- p$*' '2|pa|b'
31 testcase 'set -- a b; set -- p$*q' '2|pa|bq'
[all …]
/dflybsd-src/contrib/binutils-2.27/gas/doc/
H A Dasconfig.texi10 @set ALL-ARCH
12 @set GENERIC
16 @set MULTI-OBJ
20 @set AOUT
21 @set COFF
22 @set ELF
23 @set SOM
27 @set AARCH64
28 @set ALPHA
29 @set ARC
[all …]
/dflybsd-src/tools/regression/bin/sh/expansion/
H A Dtrim9.025 testcase 'shift $#; set -- "${*#Q}"' '1|'
26 testcase 'shift $#; set -- "${*##Q}"' '1|'
27 testcase 'shift $#; set -- "${*%Q}"' '1|'
28 testcase 'shift $#; set -- "${*%%Q}"' '1|'
29 testcase 'set -- Q R; set -- "${*#Q}"' '1| R'
30 testcase 'set -- Q R; set -- "${*##Q}"' '1| R'
31 testcase 'set -- Q R; set -- "${*%R}"' '1|Q '
32 testcase 'set -- Q R; set -- "${*%%R}"' '1|Q '
33 testcase 'set -- Q R; set -- "${*#S}"' '1|Q R'
34 testcase 'set -- Q R; set -- "${*##S}"' '1|Q R'
[all …]
H A Dtrim1.024 testcase 'set -- ${t%t}' '1|texttex'
25 testcase 'set -- "${t%t}"' '1|texttex'
26 testcase 'set -- ${t%e*}' '1|textt'
27 testcase 'set -- "${t%e*}"' '1|textt'
28 testcase 'set -- ${t%%e*}' '1|t'
29 testcase 'set -- "${t%%e*}"' '1|t'
30 testcase 'set -- ${t%%*}' '0|'
31 testcase 'set -- "${t%%*}"' '1|'
32 testcase 'set -- ${t#t}' '1|exttext'
33 testcase 'set -- "${t#t}"' '1|exttext'
[all …]
H A Dplus-minus1.024 testcase 'set -- a b' '2|a|b'
25 testcase 'set --' '0|'
26 testcase 'set -- ${e}' '0|'
27 testcase 'set -- "${e}"' '1|'
29 testcase 'set -- $p' '1|/etc/'
30 testcase 'set -- "$p"' '1|/et[c]/'
31 testcase 'set -- ${s+$p}' '1|/etc/'
32 testcase 'set -- "${s+$p}"' '1|/et[c]/'
33 testcase 'set -- ${s+"$p"}' '1|/et[c]/'
35 #testcase 'set -- "${s+"$p"}"' '1|/et[c]/'
[all …]
H A Dtrim8.033 testcase 'set -- "$s"' "1|$s"
34 testcase 'set -- "${s#$c2}"' "1|$s"
35 testcase 'set -- "${s#*}"' "1|$s"
36 testcase 'set -- "${s#$c1}"' "1|$c2$c3$c4"
37 testcase 'set -- "${s#$c1$c2}"' "1|$c3$c4"
38 testcase 'set -- "${s#$c1$c2$c3}"' "1|$c4"
39 testcase 'set -- "${s#$c1$c2$c3$c4}"' "1|"
40 testcase 'set -- "${s#?}"' "1|$c2$c3$c4"
41 testcase 'set -- "${s#??}"' "1|$c3$c4"
42 testcase 'set -- "${s#???}"' "1|$c4"
[all …]
H A Dtilde2.026 testcase 'set -- ${$+~}' '1|/tmp'
27 testcase 'set -- ${$+~/}' '1|/tmp/'
28 testcase 'set -- ${$+~/foo}' '1|/tmp/foo'
29 testcase 'set -- ${$+x~}' '1|x~'
30 testcase 'set -- ${$+~root}' "1|$roothome"
31 testcase 'set -- ${$+"~"}' '1|~'
32 testcase 'set -- ${$+"~/"}' '1|~/'
33 testcase 'set -- ${$+"~/foo"}' '1|~/foo'
34 testcase 'set -- ${$+"x~"}' '1|x~'
35 testcase 'set -- ${$+"~root"}' "1|~root"
[all …]
H A Dtrim2.024 set -f
25 testcase 'set -- $s' '1|ast*que?non'
26 testcase 'set -- ${s%\?*}' '1|ast*que'
27 testcase 'set -- "${s%\?*}"' '1|ast*que'
28 testcase 'set -- ${s%\**}' '1|ast'
29 testcase 'set -- "${s%\**}"' '1|ast'
30 testcase 'set -- ${s%"$q"*}' '1|ast*que'
31 testcase 'set -- "${s%"$q"*}"' '1|ast*que'
32 testcase 'set -- ${s%"$a"*}' '1|ast'
33 testcase 'set -- "${s%"$a"*}"' '1|ast'
[all …]
/dflybsd-src/contrib/gcc-4.7/libcpp/
H A Dline-map.c56 linemap_init (struct line_maps *set) in linemap_init() argument
58 memset (set, 0, sizeof (struct line_maps)); in linemap_init()
59 set->highest_location = RESERVED_LOCATION_COUNT - 1; in linemap_init()
60 set->highest_line = RESERVED_LOCATION_COUNT - 1; in linemap_init()
66 linemap_check_files_exited (struct line_maps *set) in linemap_check_files_exited() argument
71 for (map = LINEMAPS_LAST_ORDINARY_MAP (set); in linemap_check_files_exited()
73 map = INCLUDED_FROM (set, map)) in linemap_check_files_exited()
84 new_linemap (struct line_maps *set, in new_linemap() argument
92 if (LINEMAPS_USED (set, macro_map_p) == LINEMAPS_ALLOCATED (set, macro_map_p)) in new_linemap()
98 = set->reallocator ? set->reallocator : xrealloc; in new_linemap()
[all …]
/dflybsd-src/contrib/gcc-8.0/libcpp/
H A Dline-map.c105 rebuild_location_adhoc_htab (struct line_maps *set) in rebuild_location_adhoc_htab() argument
108 set->location_adhoc_data_map.htab = in rebuild_location_adhoc_htab()
110 for (i = 0; i < set->location_adhoc_data_map.curr_loc; i++) in rebuild_location_adhoc_htab()
111 htab_find_slot (set->location_adhoc_data_map.htab, in rebuild_location_adhoc_htab()
112 set->location_adhoc_data_map.data + i, INSERT); in rebuild_location_adhoc_htab()
120 can_be_stored_compactly_p (struct line_maps *set, in can_be_stored_compactly_p() argument
146 source_location lowest_macro_loc = LINEMAPS_MACRO_LOWEST_LOCATION (set); in can_be_stored_compactly_p()
161 get_combined_adhoc_loc (struct line_maps *set, in get_combined_adhoc_loc() argument
171 = set->location_adhoc_data_map.data[locus & MAX_SOURCE_LOCATION].locus; in get_combined_adhoc_loc()
179 || locus >= LINEMAPS_MACRO_LOWEST_LOCATION (set) in get_combined_adhoc_loc()
[all …]
/dflybsd-src/lib/libc/gen/
H A Dsetmode.c82 const BITCMD *set; in getmode() local
85 set = (const BITCMD *)bbox; in getmode()
87 for (value = 0;; set++) in getmode()
88 switch(set->cmd) { in getmode()
105 common: if (set->cmd2 & CMD2_CLR) { in getmode()
107 (set->cmd2 & CMD2_SET) ? S_IRWXO : value; in getmode()
108 if (set->cmd2 & CMD2_UBITS) in getmode()
109 newmode &= ~((clrval<<6) & set->bits); in getmode()
110 if (set->cmd2 & CMD2_GBITS) in getmode()
111 newmode &= ~((clrval<<3) & set->bits); in getmode()
[all …]
/dflybsd-src/sys/sys/
H A Dlinker_set.h54 #define __MAKE_SET(set, sym) \
55 static void const * const __set_##set##_sym_##sym = &sym; \
56 __asm(".section set_" #set ",\"aw\""); \
62 #define __MAKE_SET(set, sym) \ argument
63 __GLOBL(__CONCAT(__start_set_,set)); \
64 __GLOBL(__CONCAT(__stop_set_,set)); \
65 static void const * const __set_##set##_sym_##sym \
66 __section("set_" #set) __used = &(sym)
68 #define TEXT_SET(set, sym) __MAKE_SET(set, sym) argument
69 #define DATA_SET(set, sym) __MAKE_SET(set, sym) argument
[all …]
H A Dsignalvar.h91 #define SIGADDSET(set, signo) \ argument
92 (set).__bits[_SIG_WORD(signo)] |= _SIG_BIT(signo)
94 #define SIGADDSET_ATOMIC(set, signo) \ argument
95 atomic_set_int(&(set).__bits[_SIG_WORD(signo)], _SIG_BIT(signo))
97 #define SIGDELSET(set, signo) \ argument
98 (set).__bits[_SIG_WORD(signo)] &= ~_SIG_BIT(signo)
100 #define SIGDELSET_ATOMIC(set, signo) \ argument
101 atomic_clear_int(&(set).__bits[_SIG_WORD(signo)], _SIG_BIT(signo))
103 #define SIGEMPTYSET(set) \ argument
107 (set).__bits[__i] = 0; \
[all …]
/dflybsd-src/contrib/gcc-8.0/gcc/
H A Ddfp.c73 decContext set; in decimal_real_from_string() local
74 decContextDefault (&set, DEC_INIT_DECIMAL128); in decimal_real_from_string()
75 set.traps = 0; in decimal_real_from_string()
77 decNumberFromString (&dn, s, &set); in decimal_real_from_string()
82 decimal_from_decnumber (r, &dn, &set); in decimal_real_from_string()
90 decContext set; in decimal_to_decnumber() local
91 decContextDefault (&set, DEC_INIT_DECIMAL128); in decimal_to_decnumber()
92 set.traps = 0; in decimal_to_decnumber()
100 decNumberFromString (dn, "Infinity", &set); in decimal_to_decnumber()
104 decNumberFromString (dn, "snan", &set); in decimal_to_decnumber()
[all …]
/dflybsd-src/contrib/gcc-4.7/gcc/
H A Ddfp.c77 decContext set; in decimal_real_from_string() local
78 decContextDefault (&set, DEC_INIT_DECIMAL128); in decimal_real_from_string()
79 set.traps = 0; in decimal_real_from_string()
81 decNumberFromString (&dn, s, &set); in decimal_real_from_string()
86 decimal_from_decnumber (r, &dn, &set); in decimal_real_from_string()
94 decContext set; in decimal_to_decnumber() local
95 decContextDefault (&set, DEC_INIT_DECIMAL128); in decimal_to_decnumber()
96 set.traps = 0; in decimal_to_decnumber()
104 decNumberFromString (dn, "Infinity", &set); in decimal_to_decnumber()
108 decNumberFromString (dn, "snan", &set); in decimal_to_decnumber()
[all …]
/dflybsd-src/sys/platform/pc64/x86_64/
H A Dglobal.s46 .set globaldata,0
54 .set gd_trampoline,globaldata + GD_TRAMPOLINE
55 .set gd_debug1,globaldata + GD_DEBUG1
56 .set gd_debug2,globaldata + GD_DEBUG2
57 .set gd_curthread,globaldata + GD_CURTHREAD
58 .set gd_npxthread,globaldata + GD_NPXTHREAD
59 .set gd_reqflags,globaldata + GD_REQFLAGS
60 .set gd_common_tss,globaldata + GD_COMMON_TSS
63 .set gd_common_tssd,globaldata + GD_COMMON_TSSD
64 .set gd_tss_gdt,globaldata + GD_TSS_GDT
[all …]
/dflybsd-src/contrib/gcc-8.0/libcpp/include/
H A Dline-map.h786 LINEMAPS_ALLOCATED (const line_maps *set, bool map_kind) in LINEMAPS_ALLOCATED() argument
789 return set->info_macro.allocated; in LINEMAPS_ALLOCATED()
791 return set->info_ordinary.allocated; in LINEMAPS_ALLOCATED()
797 LINEMAPS_ALLOCATED (line_maps *set, bool map_kind) in LINEMAPS_ALLOCATED() argument
800 return set->info_macro.allocated; in LINEMAPS_ALLOCATED()
802 return set->info_ordinary.allocated; in LINEMAPS_ALLOCATED()
808 LINEMAPS_USED (const line_maps *set, bool map_kind) in LINEMAPS_USED() argument
811 return set->info_macro.used; in LINEMAPS_USED()
813 return set->info_ordinary.used; in LINEMAPS_USED()
819 LINEMAPS_USED (line_maps *set, bool map_kind) in LINEMAPS_USED() argument
[all …]
/dflybsd-src/sys/platform/vkernel64/x86_64/
H A Dglobal.s45 .set globaldata,0
52 .set gd_curthread,globaldata + GD_CURTHREAD
53 .set gd_npxthread,globaldata + GD_NPXTHREAD
54 .set gd_reqflags,globaldata + GD_REQFLAGS
55 .set gd_common_tss,globaldata + GD_COMMON_TSS
58 .set gd_cpumask,globaldata + GD_CPUMASK
61 .set gd_common_tssd,globaldata + GD_COMMON_TSSD
62 .set gd_tss_gdt,globaldata + GD_TSS_GDT
65 .set gd_currentldt,globaldata + GD_CURRENTLDT
68 .set gd_fpu_lock, globaldata + GD_FPU_LOCK
[all …]
/dflybsd-src/contrib/binutils-2.27/ld/
H A Dconfigdoc.texi6 @set GENERIC
9 @set ARM
10 @set C6X
11 @set H8300
12 @set HPPA
13 @set I960
14 @set M68HC11
15 @set M68K
16 @set MIPS
17 @set MMIX
[all …]
H A Dgen-doc.texi6 @set GENERIC
9 @set ARM
10 @set C6X
11 @set H8300
12 @set HPPA
13 @set I960
14 @set M68HC11
15 @set M68K
16 @set MIPS
17 @set MMIX
[all …]
/dflybsd-src/share/examples/ppp/
H A Dppp.conf.sample31 set log Phase Chat LCP IPCP CCP tun command
32 set device /dev/cuaa1
33 set speed 115200
34 set dial "ABORT BUSY ABORT NO\\sCARRIER TIMEOUT 5 \"\" AT \
54 # The /0 bit in "set ifaddr" says that we insist on 0 bits of the
58 # The fourth arg to "set ifaddr" makes us send "0.0.0.0" as our requested
65 # The "set ifaddr" is required in -auto mode only.
80 set phone 1234567
81 set login "ABORT NO\\sCARRIER TIMEOUT 5 ogin:--ogin: ppp word: ppp"
82 set timeout 120
[all …]
H A Dppp.conf.span-isp.working44 set speed 115200
45 set device /dev/cuaD00 /dev/cuaD01 /dev/cuaD03
46 set dial
47 set login
48 set redial 3 5
49 set timeout 0
51 set lqrperiod 15
54 set authname "isp1name"
55 set authkey "isp1key"
58 set authname "isp2name"
[all …]
/dflybsd-src/sys/dev/drm/
H A Ddrm_crtc_helper.c514 int drm_crtc_helper_set_config(struct drm_mode_set *set, in drm_crtc_helper_set_config() argument
532 BUG_ON(!set); in drm_crtc_helper_set_config()
533 BUG_ON(!set->crtc); in drm_crtc_helper_set_config()
534 BUG_ON(!set->crtc->helper_private); in drm_crtc_helper_set_config()
537 BUG_ON(!set->mode && set->fb); in drm_crtc_helper_set_config()
538 BUG_ON(set->fb && set->num_connectors == 0); in drm_crtc_helper_set_config()
540 crtc_funcs = set->crtc->helper_private; in drm_crtc_helper_set_config()
542 if (!set->mode) in drm_crtc_helper_set_config()
543 set->fb = NULL; in drm_crtc_helper_set_config()
545 if (set->fb) { in drm_crtc_helper_set_config()
[all …]
/dflybsd-src/contrib/gcc-8.0/libdecnumber/
H A DdecNumber.c380 Int decNumberToInt32(const decNumber *dn, decContext *set) { in decNumberToInt32() argument
382 if (decCheckOperands(DECUNRESU, DECUNUSED, dn, set)) return 0; in decNumberToInt32()
412 decContextSetStatus(set, DEC_Invalid_operation); /* [may not return] */ in decNumberToInt32()
416 uInt decNumberToUInt32(const decNumber *dn, decContext *set) { in decNumberToUInt32() argument
418 if (decCheckOperands(DECUNRESU, DECUNUSED, dn, set)) return 0; in decNumberToUInt32()
441 decContextSetStatus(set, DEC_Invalid_operation); /* [may not return] */ in decNumberToUInt32()
490 decContext *set) { in decNumberFromString() argument
510 if (decCheckOperands(DECUNRESU, DECUNUSED, DECUNUSED, set)) in decNumberFromString()
543 if (!set->extended) break; /* hopeless */ in decNumberFromString()
580 if (d>set->digits-1) { in decNumberFromString()
[all …]
/dflybsd-src/contrib/gdb-7/libdecnumber/
H A DdecNumber.c380 Int decNumberToInt32(const decNumber *dn, decContext *set) { in decNumberToInt32() argument
382 if (decCheckOperands(DECUNRESU, DECUNUSED, dn, set)) return 0; in decNumberToInt32()
412 decContextSetStatus(set, DEC_Invalid_operation); /* [may not return] */ in decNumberToInt32()
416 uInt decNumberToUInt32(const decNumber *dn, decContext *set) { in decNumberToUInt32() argument
418 if (decCheckOperands(DECUNRESU, DECUNUSED, dn, set)) return 0; in decNumberToUInt32()
441 decContextSetStatus(set, DEC_Invalid_operation); /* [may not return] */ in decNumberToUInt32()
490 decContext *set) { in decNumberFromString() argument
510 if (decCheckOperands(DECUNRESU, DECUNUSED, DECUNUSED, set)) in decNumberFromString()
543 if (!set->extended) break; /* hopeless */ in decNumberFromString()
580 if (d>set->digits-1) { in decNumberFromString()
[all …]

12345678910>>...66