Home
last modified time | relevance | path

Searched refs:b (Results 3701 – 3725 of 7000) sorted by relevance

1...<<141142143144145146147148149150>>...280

/freebsd/sys/dev/fb/
H A Dvga.c2009 b[i] = inb(PALDATA) << bits; in vga_save_palette2()
2054 outb(PALDATA, b[i] >> bits); in vga_load_palette2()
2732 u_int8_t b[3]; in direct_fill_rect24() local
2734 b[0] = val & 0x0000ff; in direct_fill_rect24()
2735 b[1] = (val >> 8) & 0x0000ff; in direct_fill_rect24()
2736 b[2] = (val >> 16) & 0x0000ff; in direct_fill_rect24()
2758 writeb(adp->va_window + j, b[i]); in direct_fill_rect24()
2856 u_char *b; in get_palette() local
2865 b = g + count; in get_palette()
2895 u_char *b; in set_palette() local
[all …]
/freebsd/contrib/sendmail/src/
H A Dparseaddr.c284 char *b = addr; local
324 b);
327 b);
365 char *b = addr; local
416 b, result);
419 b, result);
2398 sameaddr(a, b) in sameaddr() argument
2400 register ADDRESS *b;
2421 if (!ADDR_FLAGS_MATCH(a, b))
2428 cb = getctladdr(b);
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/ADT/
H A DIntEqClasses.h59 unsigned join(unsigned a, unsigned b);
/freebsd/lib/msun/amd64/
H A De_remainder.S47 jne 1b
H A De_remainderf.S17 jne 1b
/freebsd/contrib/llvm-project/compiler-rt/lib/builtins/arm/
H A Dchkstk.S31 bgt 1b
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/print/
H A Dtst.array.d.out13 char [30] b = [ "ab" ]
/freebsd/tests/sys/cddl/zfs/tests/rename_dirs/
H A Drename_dirs_001_pos.ksh68 $MKDIR -p 1/2/3/4/5 a/b/c/d/e
/freebsd/contrib/llvm-project/lldb/source/Plugins/UnwindAssembly/x86/
H A Dx86AssemblyInspectionEngine.cpp845 uint16_t x86AssemblyInspectionEngine::extract_2(uint8_t *b) { in extract_2() argument
848 v = (v << 8) | b[i]; in extract_2()
852 int16_t x86AssemblyInspectionEngine::extract_2_signed(uint8_t *b) { in extract_2_signed() argument
855 v = (v << 8) | b[i]; in extract_2_signed()
859 uint32_t x86AssemblyInspectionEngine::extract_4(uint8_t *b) { in extract_4() argument
862 v = (v << 8) | b[i]; in extract_4()
866 int32_t x86AssemblyInspectionEngine::extract_4_signed(uint8_t *b) { in extract_4_signed() argument
869 v = (v << 8) | b[i]; in extract_4_signed()
/freebsd/contrib/llvm-project/lld/COFF/
H A DSymbolTable.cpp236 if (auto *b = dyn_cast<BitcodeFile>(file)) { in getSymbolLocations() local
237 std::vector<std::string> symbolLocations = getSymbolLocations(b); in getSymbolLocations()
406 for (Symbol *b : ctx.config.gcroot) { in reportProblemSymbols()
407 if (undefs.count(b)) in reportProblemSymbols()
408 errorOrWarn("<root>: undefined symbol: " + toString(ctx, *b), in reportProblemSymbols()
411 if (Symbol *imp = localImports->lookup(b)) in reportProblemSymbols()
652 if (auto *b = dyn_cast<BitcodeFile>(file)) in getSourceLocation() local
653 return getSourceLocationBitcode(b); in getSourceLocation()
/freebsd/lib/msun/i387/
H A Ds_tan.S51 jp 2b
/freebsd/sys/contrib/device-tree/src/arm/aspeed/
H A Daspeed-bmc-ibm-rainier-4u.dts17 power-supply@6b {
/freebsd/sys/contrib/ncsw/Peripherals/BM/
H A Dbman_low.c79 static __inline__ void *ptr_ADD(void *a, uintptr_t b) in ptr_ADD() argument
81 return (void *)((uintptr_t)a + b); in ptr_ADD()
85 static __inline__ void *ptr_OR(void *a, uintptr_t b) in ptr_OR() argument
87 return (void *)((uintptr_t)a | b); in ptr_OR()
/freebsd/contrib/bearssl/src/symcipher/
H A Daes_ct64.c209 uint64_t a, b; \ in br_aes_ct64_ortho()
211 b = (y); \ in br_aes_ct64_ortho()
212 (x) = (a & (uint64_t)cl) | ((b & (uint64_t)cl) << (s)); \ in br_aes_ct64_ortho()
213 (y) = ((a & (uint64_t)ch) >> (s)) | (b & (uint64_t)ch); \ in br_aes_ct64_ortho()
/freebsd/crypto/openssl/crypto/sm2/
H A Dsm2_sign.c36 BIGNUM *b = NULL; in ossl_sm2_compute_z_digest() local
55 b = BN_CTX_get(ctx); in ossl_sm2_compute_z_digest()
97 if (!EC_GROUP_get_curve(group, p, a, b, ctx)) { in ossl_sm2_compute_z_digest()
111 || BN_bn2binpad(b, buf, p_bytes) < 0 in ossl_sm2_compute_z_digest()
/freebsd/crypto/openssl/crypto/dsa/
H A Ddsa_ameth.c257 static int dsa_cmp_parameters(const EVP_PKEY *a, const EVP_PKEY *b) in dsa_cmp_parameters() argument
259 return ossl_ffc_params_cmp(&a->pkey.dsa->params, &b->pkey.dsa->params, 1); in dsa_cmp_parameters()
262 static int dsa_pub_cmp(const EVP_PKEY *a, const EVP_PKEY *b) in dsa_pub_cmp() argument
264 return BN_cmp(b->pkey.dsa->pub_key, a->pkey.dsa->pub_key) == 0; in dsa_pub_cmp()
/freebsd/crypto/openssl/crypto/poly1305/
H A Dpoly1305.c93 # define CONSTANT_TIME_CARRY(a,b) ( \ argument
94 (a ^ ((a ^ b) | ((a - b) ^ b))) >> (sizeof(a) * 8 - 1) \
/freebsd/crypto/openssl/crypto/bn/asm/
H A Drsaz-avx512.pl112 my ($res,$a,$b,$m,$k0) = @_6_args_universal_ABI;
147 mulx %r13, %r13, %r12 # a[0]*b[i] = (t0,t2)
347 movq $b, $b_ptr # backup address of b
460 movq $b, $b_ptr # backup address of b
/freebsd/sys/dev/hpt27xx/
H A Dldm.h64 #define hpt_time_after_eq(a, b) ((int)(a) - (int)(b) >= 0) argument
65 #define hpt_time_after(a, b) ((int)(a) - (int)(b) > 0) argument
/freebsd/usr.bin/ee/nls/pt_BR.ISO8859-1/
H A Dee.msg47 37 "^b bot�o de texto ^j nova linha ^t in�cio do texto "
69 59 "^b bot�o de texto ^g in�cio da linha ^w deletar palavra ^l esquerda …
157 147 "^b voltar 1 caracter ^j resturar caracter ^t in�cio do texto "
166 156 "^u fim do arquivo ^a in�cio da linha ^w deletar palavra ^b regressar 1 caracter "
/freebsd/usr.sbin/ppp/
H A Dnat_cmd.c93 lowhigh(u_short *a, u_short *b) in lowhigh() argument
95 if (a > b) { in lowhigh()
98 c = *b; in lowhigh()
99 *b = *a; in lowhigh()
/freebsd/sys/dev/hptnr/
H A Dldm.h64 #define hpt_time_after_eq(a, b) ((int)(a) - (int)(b) >= 0) argument
65 #define hpt_time_after(a, b) ((int)(a) - (int)(b) > 0) argument
/freebsd/crypto/openssl/test/testutil/
H A Dtests.c260 int test_true(const char *file, int line, const char *s, int b) in test_true() argument
262 if (b) in test_true()
268 int test_false(const char *file, int line, const char *s, int b) in test_false() argument
270 if (!b) in test_false()
/freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DScriptInterpreter.h90 LoadScriptOptions &SetInitSession(bool b) { in SetInitSession() argument
91 m_init_session = b; in SetInitSession()
95 LoadScriptOptions &SetSilent(bool b) { in SetSilent() argument
96 m_silent = b; in SetSilent()
/freebsd/sys/contrib/openzfs/include/os/linux/kernel/linux/
H A Dblkdev_compat.h142 #define bio_for_each_segment4(bv, bvp, b, i) \ argument
143 bio_for_each_segment((bv), (b), (i))
150 #define bio_for_each_segment4(bv, bvp, b, i) \ argument
151 bio_for_each_segment((bvp), (b), (i))

1...<<141142143144145146147148149150>>...280