Home
last modified time | relevance | path

Searched refs:machine (Results 1 – 25 of 3119) sorted by relevance

12345678910>>...125

/netbsd-src/external/gpl3/gcc/dist/gcc/config/nds32/
H A Dnds32.cc344 struct machine_function *machine; in nds32_init_machine_status() local
345 machine = ggc_cleared_alloc<machine_function> (); in nds32_init_machine_status()
348 machine->use_eh_return_p = 0; in nds32_init_machine_status()
351 machine->naked_p = 0; in nds32_init_machine_status()
354 machine->fp_as_gp_p = 0; in nds32_init_machine_status()
357 machine->strict_aligned_p = 0; in nds32_init_machine_status()
360 machine->attr_naked_p = 0; in nds32_init_machine_status()
361 machine->attr_no_prologue_p = 0; in nds32_init_machine_status()
363 return machine; in nds32_init_machine_status()
378 cfun->machine->naked_p = 0; in nds32_compute_stack_frame()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/nds32/
H A Dnds32.c344 struct machine_function *machine; in nds32_init_machine_status() local
345 machine = ggc_cleared_alloc<machine_function> (); in nds32_init_machine_status()
348 machine->use_eh_return_p = 0; in nds32_init_machine_status()
351 machine->naked_p = 0; in nds32_init_machine_status()
354 machine->fp_as_gp_p = 0; in nds32_init_machine_status()
357 machine->strict_aligned_p = 0; in nds32_init_machine_status()
360 machine->attr_naked_p = 0; in nds32_init_machine_status()
361 machine->attr_no_prologue_p = 0; in nds32_init_machine_status()
363 return machine; in nds32_init_machine_status()
378 cfun->machine->naked_p = 0; in nds32_compute_stack_frame()
[all …]
/netbsd-src/external/mpl/bind/dist/bin/tests/system/nsupdate/krb/
H A Dsetup.sh89 kadmin.local addprinc -maxlife ${lifetime}d -randkey host/machine.example.com@EXAMPLE.COM
93 kadmin.local ktadd -k krb5-machine.keytab host/machine.example.com@EXAMPLE.COM
101 kadmin.local ktadd -k ms-machine.keytab 'machine$@EXAMPLE.COM'
103 kinit -V -k -t krb5-machine.keytab -l ${lifetime}d -c krb5-machine.ccache host/machine.example.com@…
104 kinit -V -k -t ms-machine.keytab -l ${lifetime}d -c ms-machine.ccache 'machine$@EXAMPLE.COM'
111 cp krb5-machine.ccache ../ns7/machine.ccache
112 cp krb5-machine.ccache ../ns8/machine.ccache
113 cp ms-machine.ccache ../ns9/machine.ccache
114 cp ms-machine.ccache ../ns10/machine.ccache
/netbsd-src/usr.bin/apropos/
H A Dapropos.c79 char *conffile, *machine, **p, *p_augment, *p_path, *sflag; in main() local
84 machine = sflag = NULL; in main()
98 machine = optarg; in main()
99 lowstr(machine, machine); in main()
124 apropos(argv, p_augment, true, sflag, machine); in main()
126 apropos(argv, p_path, true, sflag, machine); in main()
143 machine); in main()
162 const char *sflag, const char *machine) in apropos() argument
173 if (machine) in apropos()
174 mlen = strlen(machine); in apropos()
[all …]
/netbsd-src/crypto/external/bsd/openssl.old/dist/ssl/statem/
H A DREADME5 state machine code to aid future maintenance.
7 The state machine code replaces an older state machine present in OpenSSL
8 versions 1.0.2 and below. The new state machine has the following objectives:
24 - Control complexity: only the state machine can change state: keep all
25 the state changes local to the state machine component
27 The message flow state machine is divided into a reading sub-state machine and a
28 writing sub-state machine. See the source comments in statem.c for a more
31 Conceptually the state machine component is designed as follows:
41 | Core state machine code |
51 | state machine code | | state machine code |
/netbsd-src/crypto/external/bsd/openssl/dist/ssl/statem/
H A DREADME.md5 state machine code to aid future maintenance.
7 The state machine code replaces an older state machine present in OpenSSL
8 versions 1.0.2 and below. The new state machine has the following objectives:
25 - Control complexity: only the state machine can change state: keep all
26 the state changes local to the state machine component
28 The message flow state machine is divided into a reading sub-state machine and a
29 writing sub-state machine. See the source comments in statem.c for a more
32 Conceptually the state machine component is designed as follows:
42 | Core state machine code |
52 | state machine code | | state machine code |
/netbsd-src/sys/external/bsd/sljit/dist/regex_src/
H A DregexMain.c56 struct regex_machine* machine; in verbose_test() local
65 machine = regex_compile(pattern, ptr - pattern, REGEX_MATCH_VERBOSE | REGEX_NEWLINE, &error); in verbose_test()
71 if (!machine) { in verbose_test()
76 match = regex_begin_match(machine); in verbose_test()
79 regex_free_machine(machine); in verbose_test()
93 regex_free_machine(machine); in verbose_test()
111 struct regex_machine* machine = NULL; in run_tests() local
125 if (machine) in run_tests()
126 regex_free_machine(machine); in run_tests()
132 machine = regex_compile(test->pattern, ptr - test->pattern, test->flags, &error); in run_tests()
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/ft32/
H A Dft32.c401 cfun->machine->local_vars_size = get_frame_size (); in ft32_compute_frame()
404 padding_locals = cfun->machine->local_vars_size % stack_alignment; in ft32_compute_frame()
408 cfun->machine->local_vars_size += padding_locals; in ft32_compute_frame()
410 cfun->machine->callee_saved_reg_size = 0; in ft32_compute_frame()
415 cfun->machine->callee_saved_reg_size += 4; in ft32_compute_frame()
417 cfun->machine->size_for_adjusting_sp = in ft32_compute_frame()
419 + cfun->machine->local_vars_size in ft32_compute_frame()
431 int bigframe = (cfun->machine->size_for_adjusting_sp >= 512); in must_link()
462 current_function_static_stack_size = cfun->machine->size_for_adjusting_sp; in ft32_expand_prologue()
464 if (!must_link () && (cfun->machine->callee_saved_reg_size == 4)) in ft32_expand_prologue()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/config/ft32/
H A Dft32.cc401 cfun->machine->local_vars_size = get_frame_size (); in ft32_compute_frame()
404 padding_locals = cfun->machine->local_vars_size % stack_alignment; in ft32_compute_frame()
408 cfun->machine->local_vars_size += padding_locals; in ft32_compute_frame()
410 cfun->machine->callee_saved_reg_size = 0; in ft32_compute_frame()
415 cfun->machine->callee_saved_reg_size += 4; in ft32_compute_frame()
417 cfun->machine->size_for_adjusting_sp = in ft32_compute_frame()
419 + cfun->machine->local_vars_size in ft32_compute_frame()
431 int bigframe = (cfun->machine->size_for_adjusting_sp >= 512); in must_link()
462 current_function_static_stack_size = cfun->machine->size_for_adjusting_sp; in ft32_expand_prologue()
464 if (!must_link () && (cfun->machine->callee_saved_reg_size == 4)) in ft32_expand_prologue()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DMachinePassRegistry.def78 // MACHINE_FUNCTION_ANALYSIS("lazy-machine-bfi", LazyMachineBlockFrequencyInfoAnalysis())
79 // MACHINE_FUNCTION_ANALYSIS("machine-bfi", MachineBlockFrequencyInfoAnalysis())
80 // MACHINE_FUNCTION_ANALYSIS("machine-loops", MachineLoopInfoAnalysis())
81 // MACHINE_FUNCTION_ANALYSIS("machine-dom-frontier", MachineDominanceFrontierAnalysis())
82 // MACHINE_FUNCTION_ANALYSIS("machine-dom-tree", MachineDominatorTreeAnalysis())
83 // MACHINE_FUNCTION_ANALYSIS("machine-ore", MachineOptimizationRemarkEmitterPassAnalysis())
84 // MACHINE_FUNCTION_ANALYSIS("machine-post-dom-tree", MachinePostDominatorTreeAnalysis())
85 // MACHINE_FUNCTION_ANALYSIS("machine-region-info", MachineRegionInfoPassAnalysis())
86 // MACHINE_FUNCTION_ANALYSIS("machine-trace-metrics", MachineTraceMetricsAnalysis())
96 // MACHINE_FUNCTION_PASS("free-machine-function", FreeMachineFunctionPass, ())
[all …]
/netbsd-src/etc/
H A DMAKEDEV.awk42 machine = ENVIRON["MACHINE"]
45 if (!machine || !maarch || !srcdir) {
58 … index(maarch, "aarch64")) && system("test -f '" top "arch/" machine "/conf/majors." machine "'") …
60 else if (machine == "sbmips")
62 … || maarch == "powerpc64") && system("test -f '" top "arch/" machine "/conf/majors." machine "'") …
65 majors[1] = "arch/" machine "/conf/majors." machine;
97 cfgfile = srcdir "/etc/etc." machine "/MAKEDEV.conf"
146 incdir = machine
263 sub(/MAKEDEV.conf/, "etc." machine "/MAKEDEV.conf", CONFRCSID)
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/posix/sys/
H A Dutsname.d33 char[utsNameLength] machine = 0; in version()
52 char[utsNameLength] machine = 0; in version()
70 char[SYS_NMLN] machine = 0; in version()
88 char[utsNameLength] machine = 0; in version()
103 char[utsNameLength] machine = 0; in version()
120 char[utsNameLength] machine = 0; in version()
136 char[SYS_NMLN] machine = 0; in version()
152 char[SYS_NMLN] machine = 0; in version()
168 char[SYS_NMLN] machine = 0; in version()
184 char[utsNameLength] machine = 0; in version()
/netbsd-src/usr.sbin/installboot/
H A Dinstallboot.c216 if (params->machine == NULL) { in main()
219 getmachine(params, utsname.machine, "uname()"); in main()
223 unsupported_flags = params->flags & ~params->machine->valid_flags; in main()
232 options[ndx].name, params->machine->name); in main()
237 params->machine->name); in main()
240 params->machine->name); in main()
304 assert(params->machine != NULL); in main()
317 if (params->machine->mach_flags & MF_UBOOT) { in main()
350 rv = params->machine->editboot(params); in main()
353 rv = params->machine->clearboot(params); in main()
[all …]
/netbsd-src/external/bsd/am-utils/dist/scripts/
H A Dautomount2amd.in52 ($dir, $options, $machine, $path, $rest) = ($1, $2, $3, $4, $5);
62 $machine, $DOMAIN, $path);
64 $DOMAIN, $machine, $path);
65 printf " rhost:=%s.%s;rfs:=%s\n\n", $machine, $DOMAIN, $path;
68 $machine, $path);
69 printf " rhost:=%s;rfs:=%s\n\n", $machine, $path;
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/moxie/
H A Dmoxie.c254 cfun->machine->local_vars_size = get_frame_size (); in moxie_compute_frame()
257 padding_locals = cfun->machine->local_vars_size % stack_alignment; in moxie_compute_frame()
261 cfun->machine->local_vars_size += padding_locals; in moxie_compute_frame()
263 cfun->machine->callee_saved_reg_size = 0; in moxie_compute_frame()
268 cfun->machine->callee_saved_reg_size += 4; in moxie_compute_frame()
270 cfun->machine->size_for_adjusting_sp = in moxie_compute_frame()
272 + cfun->machine->local_vars_size in moxie_compute_frame()
286 current_function_static_stack_size = cfun->machine->size_for_adjusting_sp; in moxie_expand_prologue()
299 if (cfun->machine->size_for_adjusting_sp > 0) in moxie_expand_prologue()
301 int i = cfun->machine->size_for_adjusting_sp; in moxie_expand_prologue()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/config/moxie/
H A Dmoxie.cc254 cfun->machine->local_vars_size = get_frame_size (); in moxie_compute_frame()
257 padding_locals = cfun->machine->local_vars_size % stack_alignment; in moxie_compute_frame()
261 cfun->machine->local_vars_size += padding_locals; in moxie_compute_frame()
263 cfun->machine->callee_saved_reg_size = 0; in moxie_compute_frame()
268 cfun->machine->callee_saved_reg_size += 4; in moxie_compute_frame()
270 cfun->machine->size_for_adjusting_sp = in moxie_compute_frame()
272 + cfun->machine->local_vars_size in moxie_compute_frame()
286 current_function_static_stack_size = cfun->machine->size_for_adjusting_sp; in moxie_expand_prologue()
299 if (cfun->machine->size_for_adjusting_sp > 0) in moxie_expand_prologue()
301 int i = cfun->machine->size_for_adjusting_sp; in moxie_expand_prologue()
[all …]
/netbsd-src/external/gpl3/gcc/dist/gcc/doc/
H A Dconfigfiles.texi21 @file{auto-host.h} contains information about the host machine
22 determined by @file{configure}. If the host machine is different from
23 the build machine, then @file{auto-build.h} is also created,
24 containing such information about the build machine.
43 @file{xm-@var{machine}.h} header, if any, appropriate to the host,
53 @file{config.h}, for use in programs that run on the host machine.
55 @file{bconfig.h}, for use in programs that run on the build machine.
58 machine.
60 @file{tm_p.h}, which includes the header @file{@var{machine}-protos.h}
62 @file{@var{machine}.c} file. The
[all …]
H A Dportability.texi10 GCC itself aims to be portable to any machine where @code{int} is at least
16 GCC gets most of the information about the target machine from a machine
17 description which gives an algebraic formula for each of the machine's
20 fashion, ad-hoc parameters have been defined for machine descriptions.
27 GCC does not contain machine dependent code, but it does contain code
28 that depends on machine parameters such as endianness (whether the most
38 the new strategies can be added in a machine-independent fashion, and will
/netbsd-src/external/gpl3/gcc.old/dist/gcc/doc/
H A Dconfigfiles.texi21 @file{auto-host.h} contains information about the host machine
22 determined by @file{configure}. If the host machine is different from
23 the build machine, then @file{auto-build.h} is also created,
24 containing such information about the build machine.
43 @file{xm-@var{machine}.h} header, if any, appropriate to the host,
53 @file{config.h}, for use in programs that run on the host machine.
55 @file{bconfig.h}, for use in programs that run on the build machine.
58 machine.
60 @file{tm_p.h}, which includes the header @file{@var{machine}-protos.h}
62 @file{@var{machine}.c} file. The
[all …]
H A Dportability.texi10 GCC itself aims to be portable to any machine where @code{int} is at least
16 GCC gets most of the information about the target machine from a machine
17 description which gives an algebraic formula for each of the machine's
20 fashion, ad-hoc parameters have been defined for machine descriptions.
27 GCC does not contain machine dependent code, but it does contain code
28 that depends on machine parameters such as endianness (whether the most
38 the new strategies can be added in a machine-independent fashion, and will
/netbsd-src/external/bsd/am-utils/lib/libamu/
H A Dmkconf10 /* Define name of host machine's architecture (eg. sun4) */
13 /* Define name of host machine's cpu (eg. sparc) */
22 /* Define name and version of host machine (eg. solaris2.5.1) */
25 /* Define only name of host machine OS (eg. solaris2) */
28 /* Define only version of host machine (eg. 2.5.1) */
31 /* Define name of host machine's vendor (eg. sun) */
/netbsd-src/external/apache2/llvm/dist/llvm/docs/
H A DMIRLangRef.rst16 LLVM's :ref:`machine specific intermediate representation
17 <machine code representation>`.
32 contain the serialized machine functions.
58 specify the machine copy propagation pass in the ``-stop-after`` option, as it
61 ``llc -stop-after=machine-cp bug-trigger.ll > test.mir``
143 - The ``MCSymbol`` machine operands don't support temporary or local symbols.
184 The remaining YAML documents contain the machine functions. This is an example
209 properties and data structures in a machine function.
212 name of a function that this machine function is based on.
215 the function's machine basic blocks and their machine instructions.
[all …]
/netbsd-src/sys/arch/sparc/stand/binstall/
H A Dbinstall.sh93 machine=sparc64
100 machine=sparc
137 vecho "${INSTALLBOOT} ${VERBOSE} -m $machine $DEV $BOOTXX $stage2"
138 $DOIT "${INSTALLBOOT}" ${VERBOSE} -m "$machine" \
143 vecho "Network boot program: $DEST/$boot.${machine}.netbsd"
144 $DOIT cp -p -f "${MDEC}/$netboot" "$DEST/$boot.${machine}.netbsd"
/netbsd-src/games/hunt/huntd/
H A Danswer.c67 static uint32_t machine; in answer() local
89 machine = ((struct sockaddr_in *)&newaddr)->sin_addr.s_addr; in answer()
90 machine = ntohl(machine); in answer()
98 sizeof(machine)); in answer()
99 memcpy(&machine, sin6->sin6_addr.s6_addr, in answer()
100 sizeof(machine)); in answer()
104 machine = gethostid(); in answer()
107 machine = 0; /* ? */ in answer()
203 pp->p_ident = get_ident(machine, uid, name, team); in answer()
401 get_ident(uint32_t machine, uint32_t uid, const char *name, char team) in get_ident() argument
[all …]
/netbsd-src/sys/arch/next68k/stand/boot/
H A Dboot.c74 char machine; in main() local
80 machine = MON(char, MG_machine_type); in main()
81 if (machine == NeXT_TURBO_MONO || in main()
82 machine == NeXT_TURBO_COLOR || in main()
83 machine == NeXT_CUBE_TURBO) { in main()
93 printf(">> type %d, %sturbo\n", machine, turbo ? "" : "non-"); in main()

12345678910>>...125