/freebsd/contrib/wpa/src/utils/ |
H A D | state_machine.h | 32 #define SM_STATE(machine, state) \ argument 33 static void sm_ ## machine ## _ ## state ## _Enter(STATE_MACHINE_DATA *sm, \ 46 #define SM_ENTRY(machine, state) \ argument 47 if (!global || sm->machine ## _state != machine ## _ ## state) { \ 49 wpa_printf(MSG_DEBUG, STATE_MACHINE_DEBUG_PREFIX ": " #machine \ 52 sm->machine ## _state = machine ## _ ## state; 65 #define SM_ENTRY_M(machine, _state, data) \ argument 66 if (!global || sm->data ## _ ## state != machine ## _ ## _state) { \ 69 #machine " entering state " #_state); \ 71 sm->data ## _ ## state = machine ## _ ## _state; [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Passes/ |
H A D | MachinePassRegistry.def | 99 MACHINE_FUNCTION_ANALYSIS("machine-block-freq", MachineBlockFrequencyAnalysis()) 100 MACHINE_FUNCTION_ANALYSIS("machine-branch-prob", 102 MACHINE_FUNCTION_ANALYSIS("machine-dom-tree", MachineDominatorTreeAnalysis()) 103 MACHINE_FUNCTION_ANALYSIS("machine-loops", MachineLoopAnalysis()) 104 MACHINE_FUNCTION_ANALYSIS("machine-opt-remark-emitter", 106 MACHINE_FUNCTION_ANALYSIS("machine-post-dom-tree", 112 // MACHINE_FUNCTION_ANALYSIS("lazy-machine-bfi", 114 // MACHINE_FUNCTION_ANALYSIS("machine-loops", MachineLoopInfoAnalysis()) 115 // MACHINE_FUNCTION_ANALYSIS("machine-dom-frontier", 117 // MACHINE_FUNCTION_ANALYSIS("machine-post-dom-tree", [all …]
|
/freebsd/crypto/openssl/ssl/statem/ |
H A D | README.md | 5 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 |
|
/freebsd/tools/tools/genericize/ |
H A D | genericize.pl | 41 my $machine; 51 $machine = $value; 63 if ($machine) { 64 $generic = "/usr/src/sys/$machine/conf/GENERIC"; 88 die("$generic is for $value, not $machine\n") 89 unless ($value eq $machine);
|
/freebsd/contrib/libxo/tests/xo/saved/ |
H A D | xo_02.X.out | 1 …machine><name>red</name><memory>55</memory></machine><machine><name>green</name><memory>55</memory…
|
H A D | xo_02.XP.out | 63 <machine> 66 </machine> 67 <machine> 70 </machine> 71 <machine> 74 </machine>
|
/freebsd/contrib/llvm-project/lld/COFF/ |
H A D | Symbols.cpp | 39 if (ctx.config.machine == I386) in maybeDemangleSymbol() 111 uint16_t machine) { in makeImportThunk() argument 112 if (machine == AMD64) in makeImportThunk() 114 if (machine == I386) in makeImportThunk() 116 if (machine == ARM64) in makeImportThunk() 118 assert(machine == ARMNT); in makeImportThunk() 123 DefinedImportData *s, uint16_t machine) in DefinedImportThunk() argument 125 data(makeImportThunk(ctx, s, machine)) {} in DefinedImportThunk()
|
H A D | MinGW.cpp | 87 if (ctx.config.machine == I386) { in AutoExporter() 194 static StringRef mangle(Twine sym, MachineTypes machine) { in mangle() argument 195 assert(machine != IMAGE_FILE_MACHINE_UNKNOWN); in mangle() 196 if (machine == I386) in mangle() 221 ctx.symtab.addUndefined(mangle("__real_" + name, ctx.config.machine)); in addWrappedSymbols() 223 ctx.symtab.addUndefined(mangle("__wrap_" + name, ctx.config.machine)); in addWrappedSymbols()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Architecture/AArch64/ |
H A D | ArchitectureAArch64.cpp | 33 auto machine = arch.GetMachine(); in Create() 34 if (machine != llvm::Triple::aarch64 && machine != llvm::Triple::aarch64_be && in Create() 35 machine != llvm::Triple::aarch64_32) { in Create() 30 auto machine = arch.GetMachine(); Create() local
|
/freebsd/tools/tools/zfsboottest/ |
H A D | Makefile | 21 beforedepend zfsboottest.o: machine 22 CLEANFILES+= machine 23 machine: target 24 ln -sf ${SRCTOP}/sys/i386/include machine
|
/freebsd/share/examples/ppp/ |
H A D | ppp.conf.span-isp | 32 # on a single machine ! 37 # o The Receiver machine must be in the outside world and must be willing 39 # number to the Gateway machine. This probably means that it must be 43 # o The Receiver machine must be multi-homed with at least N+1 addresses 46 # REAL-LOCAL-IP is the real IP number of the Receiver machine (and must 60 # o The Receiver machine must have the following entry in 84 # The Receiver machine should have N tun interfaces (where N is the maximum 85 # number of ISPs that you wish to use simultaneously). The Gateway machine 175 # IP number to be assigned to the Gateway machine. Replace REAL-LOCAL-IP 176 # with the real IP number of the Receiver machine. [all …]
|
/freebsd/contrib/libxo/tests/xo/ |
H A D | xo_02.sh | 49 ${XOP} --open-list machine 52 ${XOP} --depth 1 $NF --open-instance machine 54 ${XOP} --depth 1 --close-instance machine 57 ${XOP} $NF --close-list machine
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/RISCV/ |
H A D | ABISysV_riscv.cpp | 134 llvm::Triple::ArchType machine = arch.GetTriple().getArch(); in CreateInstance() local 136 if (llvm::Triple::riscv32 != machine && llvm::Triple::riscv64 != machine) in CreateInstance() 142 abi->SetIsRV64((llvm::Triple::riscv64 == machine) ? true : false); in CreateInstance() 414 llvm::Triple::ArchType machine, in GetValObjFromIntRegs() argument 432 if (llvm::Triple::riscv32 == machine) { in GetValObjFromIntRegs() 442 if (llvm::Triple::riscv32 == machine) in GetValObjFromIntRegs() 488 llvm::Triple::ArchType machine, uint32_t arch_fp_flags, in GetValObjFromFPRegs() argument 498 GetValObjFromIntRegs(thread, reg_ctx, machine, type_flags, byte_size); in GetValObjFromFPRegs() 527 return GetValObjFromIntRegs(thread, reg_ctx, machine, type_flags, byte_size); in GetValObjFromFPRegs() 548 const llvm::Triple::ArchType machine = arch.GetMachine(); in GetReturnValueObjectSimple() local [all …]
|
/freebsd/contrib/sendmail/cf/cf/ |
H A D | chez.cs.mc | 17 # machine in the Computer Science Division at Berkeley, and should 21 # This file is for a home machine that wants to masquerade as an 22 # on-campus machine. Additionally, all addresses without a hostname 23 # will be forwarded to that machine.
|
H A D | python.cs.mc | 17 # machine in the Computer Science Division at Berkeley, and should 21 # This file is for a home machine that wants to masquerade as an 22 # on-campus machine. Additionally, all addresses without a hostname 23 # will be forwarded to that machine.
|
/freebsd/usr.sbin/bootparamd/bootparamd/ |
H A D | README | 24 The default router is set to the address of the machine running the server. 31 is done by comparing the canonical name of the booting machine with the 45 where "server" is a machine running the rpc.bootparamd program, "inet-address" 46 is the internet address of a booting machine, "hostname" is the name of a 47 booting machine and "file" the requested file, typically "root", "swap" or 59 will prevent the server from detecting that a machine has changed name
|
/freebsd/contrib/ntp/libntp/ |
H A D | findconfig.c | 38 if (strncmp(unamebuf.machine, "9000/", 5) == 0) in FindConfig() 39 cp = unamebuf.machine + 5; in FindConfig() 41 cp = unamebuf.machine; in FindConfig()
|
/freebsd/tools/debugscripts/ |
H A D | netstat-anr.gdb | 24 if (machine[0] == 'a' && machine[1] == 'm' && machine[2] == 'd') || \ 25 (machine[0] == 'i' && machine[1] == '3' && machine[2] == '8')
|
/freebsd/contrib/bmake/ |
H A D | configure.in | 411 machine=MACHINE 419 grep machine= | tr -d ' "'` 424 machine=${machine:-`$srcdir/machine.sh`} 425 machine_arch=${machine_arch:-`$srcdir/machine.sh arch`} 426 echo "defaults: MACHINE=$machine, MACHINE_ARCH=$machine_arch" 1>&6 430 AC_ARG_WITH(machine, optwith 431 [ --with-machine=MACHINE explicitly set MACHINE], 435 generic) machine=`$srcdir/machine.sh`;; 436 *) machine=$with_machine;; 440 [ --with-force-machine=MACHINE set FORCE_MACHINE], [all …]
|
/freebsd/contrib/file/magic/Magdir/ |
H A D | adventure | 19 # Infocom (see z-machine) 21 # Z-machine: file(1) magic for Z-machine binaries. 27 #https://en.wikipedia.org/wiki/Z-machine 28 # The first byte is the Z-machine revision; it is always between 1 and 8. We 43 >>>>>>0 ubyte < 10 Infocom (Z-machine %d 68 # All files are machine-independent (games compile to byte-code) and are tagged
|
H A D | pmem | 36 >>142 leshort 62 machine: x86_64 37 >>142 leshort 183 machine: aarch64 38 >>142 default x machine: unknown
|
/freebsd/targets/ |
H A D | Makefile.xtras | 16 MAKE_MACHINE_CMD= mk --machine <machine> 20 MAKE_MACHINE_CMD= env MACHINE=<machine> ${.MAKE:T}
|
/freebsd/tools/tools/kttcp/ |
H A D | README | 17 4. kttcp -r on one machine 18 5. kttcp -t foo on the other machine, where foo is the 19 machine where #4 was done.
|
/freebsd/tools/build/cross-build/include/common/machine/ |
H A D | endian.h | 36 #if __has_include_next(<machine/endian.h>) 37 #include_next <machine/endian.h>
|
/freebsd/sys/powerpc/conf/ |
H A D | NOTES | 2 # This file contains machine dependent kernel configuration notes. For 3 # machine independent notes, look in /sys/conf/NOTES. 31 # You must specify a machine directive to choose powerpc or powerpc64 32 #machine powerpc powerpc[64]
|