Home
last modified time | relevance | path

Searched refs:code (Results 826 – 850 of 4948) sorted by relevance

1...<<31323334353637383940>>...198

/freebsd-13.1/sys/contrib/device-tree/Bindings/power/reset/
H A Dqcom,pon.txt39 linux,code = <KEY_POWER>;
47 linux,code = <KEY_VOLUMEDOWN>;
/freebsd-13.1/crypto/openssl/crypto/chacha/asm/
H A Dchacha-ppc.pl151 $code.=<<___;
255 $code.=<<___;
289 $code.=<<___;
296 $code.=<<___;
447 $code.=<<___;
628 $code.=<<___;
677 $code.=<<___;
684 $code.=<<___;
985 $code.=<<___;
1068 $code.=<<___;
[all …]
/freebsd-13.1/contrib/diff/
H A DCOPYING24 this service if you wish), that you receive source code or can get it
36 source code. And you must show them these terms so they know their
80 source code as you receive it, in any medium, provided that you
145 machine-readable copy of the corresponding source code, to be
150 to distribute corresponding source code. (This alternative is
157 code means all the source code for all modules it contains, plus any
160 special exception, the source code distributed need not include
166 If distribution of executable or object code is made by offering
168 access to copy the source code from the same place counts as
169 distribution of the source code, even though third parties are not
[all …]
/freebsd-13.1/gnu/
H A DCOPYING24 this service if you wish), that you receive source code or can get it
36 source code. And you must show them these terms so they know their
80 source code as you receive it, in any medium, provided that you
145 machine-readable copy of the corresponding source code, to be
150 to distribute corresponding source code. (This alternative is
157 code means all the source code for all modules it contains, plus any
160 special exception, the source code distributed need not include
166 If distribution of executable or object code is made by offering
168 access to copy the source code from the same place counts as
169 distribution of the source code, even though third parties are not
[all …]
/freebsd-13.1/sys/contrib/openzfs/module/os/linux/spl/
H A DTHIRDPARTYLICENSE.gplv224 this service if you wish), that you receive source code or can get it
36 source code. And you must show them these terms so they know their
80 source code as you receive it, in any medium, provided that you
145 machine-readable copy of the corresponding source code, to be
150 to distribute corresponding source code. (This alternative is
157 code means all the source code for all modules it contains, plus any
160 special exception, the source code distributed need not include
166 If distribution of executable or object code is made by offering
168 access to copy the source code from the same place counts as
169 distribution of the source code, even though third parties are not
[all …]
/freebsd-13.1/sys/contrib/zstd/
H A DCOPYING24 this service if you wish), that you receive source code or can get it
36 source code. And you must show them these terms so they know their
80 source code as you receive it, in any medium, provided that you
145 machine-readable copy of the corresponding source code, to be
150 to distribute corresponding source code. (This alternative is
157 code means all the source code for all modules it contains, plus any
160 special exception, the source code distributed need not include
166 If distribution of executable or object code is made by offering
168 access to copy the source code from the same place counts as
169 distribution of the source code, even though third parties are not
[all …]
/freebsd-13.1/share/i18n/csmapper/APPLE/
H A DUCS%ARABIC.src76 # Column #1 is the Mac OS Arabic code (in hex as 0xNN).
82 # The entries are in Mac OS Arabic code order.
103 # 8859-6. The 8859-6 code points that are interpreted differently
117 # code points which are undefined in ISO 8859-6 for additional
181 # points 0xAA and 0xC0. For these code points the standard Mac OS
188 # that are equal to the ASCII code of the left-right character plus
190 # right-left ASTERISK may be at a different code point. The other
220 # direction attributes for the two code points - as in the case of
222 # code points to Unicode and back again without loss of information.
224 # characters to a code in the Unicode corporate use zone is
[all …]
/freebsd-13.1/crypto/openssl/doc/man3/
H A DASYNC_start_job.pod31 represents code that can be started and executes until some event occurs. At
32 that point the code can be paused and control returns to user code until some
41 user code exits per-thread resources need to be cleaned up. This will normally
117 An example of typical usage might be an async capable engine. User code would
120 ASYNC_pause_job() to return control to the user code. The user code can then
123 code that the job should be resumed by making the wait file descriptor
135 invokes ASYNC_pause_job(). This returns control back to the code that created
136 the ASYNC_JOB. If that code then attempts to acquire the same lock before
H A DHMAC.pod17 - HMAC message authentication code
52 HMAC is a MAC (message authentication code), i.e. a keyed hash
56 HMAC() computes the message authentication code of the B<n> bytes at
101 HMAC_Final() places the message authentication code in B<md>, which
116 HMAC() returns a pointer to the message authentication code or NULL if
/freebsd-13.1/contrib/sendmail/contrib/
H A Dexpn.pl588 local(@ret,$code);
608 $code = 250;
614 $code = $1;
619 if ($1 == 252 && ($code == 0 || $code == 550)) {
620 $code = 252;
625 if ($1 == 550 && $code == 0) {
626 $code = 550;
/freebsd-13.1/contrib/subversion/doc/programmer/
H A DWritingChangeLogs.txt13 the code should explain the code's present state, but ChangeLog
17 * the relative order in which changes entered the code, so you can
20 * the date at which the change entered the code, so you can relate the
21 change to outside events, like branch cuts, code freezes, and
46 further details should appear in the source code.
98 One should never need the ChangeLog to understand the current code.
101 actually belong in a comment, alongside the code it explains. Here's
/freebsd-13.1/sys/i386/i386/
H A Dvm86.c649 uint8_t *code; in vm86_prepcall() local
651 code = (void *)0xa00; in vm86_prepcall()
655 code[0] = INTn; in vm86_prepcall()
656 code[1] = vmf->vmf_trapno & 0xff; in vm86_prepcall()
657 code[2] = HLT; in vm86_prepcall()
658 vmf->vmf_ip = (uintptr_t)code; in vm86_prepcall()
661 code[0] = HLT; in vm86_prepcall()
663 stack[0] = MAKE_VEC(0, (uintptr_t)code); in vm86_prepcall()
/freebsd-13.1/sys/powerpc/powerpc/
H A Dtrap.c669 sa->code = frame->fixreg[0]; in cpu_fetch_syscall_args()
673 if (sa->code == SYS_syscall) { in cpu_fetch_syscall_args()
678 sa->code = *(register_t *) params; in cpu_fetch_syscall_args()
681 } else if (sa->code == SYS___syscall) { in cpu_fetch_syscall_args()
689 sa->code = *(register_t *) params; in cpu_fetch_syscall_args()
693 sa->code = *(register_t *) params; in cpu_fetch_syscall_args()
699 if (sa->code >= p->p_sysent->sv_size) in cpu_fetch_syscall_args()
702 sa->callp = &p->p_sysent->sv_table[sa->code]; in cpu_fetch_syscall_args()
/freebsd-13.1/usr.bin/ee/nls/fr_FR.ISO8859-1/
H A Dee.msg46 36 "^a code ascii ^i tabulation ^r droite "
58 48 "lire : lire un fichier caract : code ascii d'un caract�re"
68 58 "^a code ascii ^x rechercher ^z annul. eff. ligne ^d bas ^n page suiv."
73 63 "lire: lecture fichier|caract : code ascii du car. |0-9: aller ligne \"#\""
79 69 "code ascii : "
165 155 "^o code ascii ^x recherche ^l annul. eff.li ^n ligne suiv ^v page suiv"
/freebsd-13.1/sys/amd64/amd64/
H A Dbpf_jit_machdep.c111 if (BPF_CLASS(prog[0].code) == BPF_RET) in bpf_jit_optimize()
115 switch (prog[i].code) { in bpf_jit_optimize()
220 switch (ins->code) { in bpf_jit_compile()
440 switch (ins->code) { in bpf_jit_compile()
512 if (BPF_OP(ins->code) == BPF_MOD) in bpf_jit_compile()
560 if (BPF_OP(ins->code) == BPF_MOD) in bpf_jit_compile()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DSearchableTable.td95 // If a string field was initialized with a code literal, TableGen will
96 // emit the code verbatim. However, if a string field was initialized
97 // in some other way, but should be interpreted as code, then a TypeOf_xxx
98 // field is necessary, with a value of "code":
100 // string TypeOf_Predicate = "code";
/freebsd-13.1/contrib/traceroute/
H A DINSTALL42 file /sys/netinet/raw_ip.c) can be found in rip_output.c. This code may
43 or may not resemble the code in your kernel. It may offer you a place
87 findsaddr-generic.c - generic source address code
88 findsaddr-linux.c - linux source address code
89 findsaddr-socket.c - socket based soruce address code
/freebsd-13.1/tools/tools/net80211/wlantxtime/
H A Dwlantxtime.c238 uint8_t code = rt->info[i].dot11Rate; in ieee80211_setup_ratetable() local
242 rt->rateCodeToIndex[code] = i; in ieee80211_setup_ratetable()
243 if (code & IEEE80211_RATE_BASIC) { in ieee80211_setup_ratetable()
247 code &= IEEE80211_RATE_VAL; in ieee80211_setup_ratetable()
248 rt->rateCodeToIndex[code] = i; in ieee80211_setup_ratetable()
/freebsd-13.1/sys/contrib/device-tree/Bindings/mtd/
H A Dgpmc-nand.txt28 "sw" 1-bit Hamming ecc code via software
31 "ham1" 1-bit Hamming ecc code
32 "bch4" 4-bit BCH ecc code
33 "bch8" 8-bit BCH ecc code
34 "bch16" 16-bit BCH ECC code
/freebsd-13.1/sys/contrib/device-tree/src/arm/
H A Darmada-xp-lenovo-ix4-300d.dts144 linux,code = <KEY_POWER>;
150 linux,code = <KEY_RESTART>;
156 linux,code = <BTN_SELECT>;
162 linux,code = <KEY_SCROLLDOWN>;
/freebsd-13.1/contrib/libcbor/doc/source/
H A Ddevelopment.rst108 .. code-block:: bash
122 .. code-block:: bash
135 .. code-block:: bash
140 Testing and code coverage
H A Dusing.rst17 .. code-block:: c
60 .. code-block:: c
92 .. code-block:: c
126 .. code-block:: c
/freebsd-13.1/contrib/bsnmp/snmpd/
H A Dexport.c246 index_decode(const struct asn_oid *oid, u_int sub, u_int code, ...) in index_decode() argument
254 va_start(ap, code); in index_decode()
255 index_count = SNMP_INDEX_COUNT(code); in index_decode()
259 switch (SNMP_INDEX(code, idx)) { in index_decode()
/freebsd-13.1/bin/sh/tests/parameters/
H A Dpositional2.07 code="$1"
10 eval "$code"
18 echo "For $code, expected $expected actual $result"
/freebsd-13.1/contrib/expat/xmlwf/
H A Dxmlfile.c89 enum XML_Error code = XML_GetErrorCode(parser); in reportError() local
90 const XML_Char *message = XML_ErrorString(code); in reportError()
98 ftprintf(stderr, T("%s: (unknown message %d)\n"), filename, code); in reportError()

1...<<31323334353637383940>>...198