Searched refs:lower (Results 76 - 100 of 347) sorted by relevance

1234567891011>>

/openbsd-current/lib/libc/db/btree/
H A Dbt_split.c204 if (h->upper - h->lower < nbytes + sizeof(indx_t)) {
216 h->lower += sizeof(indx_t);
342 r->lower = BTDATAOFF;
363 r->lower = BTDATAOFF + sizeof(indx_t);
379 l->lower = BTDATAOFF;
447 l->lower = r->lower = BTDATAOFF;
487 h->lower = BTDATAOFF + 2 * sizeof(indx_t);
560 h->lower = BTDATAOFF + 2 * sizeof(indx_t);
576 * l: page to put lower hal
[all...]
H A Dbt_conv.c72 M_16_SWAP(h->lower);
178 M_16_SWAP(h->lower);
/openbsd-current/sys/arch/armv7/include/
H A Dintr.h91 void arm_set_intr_handler(int (*raise)(int), int (*lower)(int),
101 int (*lower)(int); member in struct:arm_intr_func
114 #define spllower(cpl) (arm_intr_func.lower(cpl))
/openbsd-current/sys/arch/riscv64/include/
H A Dintr.h115 void riscv_set_intr_func(int (*raise)(int), int (*lower)(int),
126 int (*lower)(int); member in struct:riscv_intr_func
135 #define spllower(cpl) (riscv_intr_func.lower(cpl))
/openbsd-current/gnu/llvm/llvm/lib/Transforms/Coroutines/
H A DCoroCleanup.cpp26 bool lower(Function &F);
47 bool Lowerer::lower(Function &F) { function in class:Lowerer
132 if (L.lower(F))
/openbsd-current/lib/libevent/
H A Devent_tagging.c106 ev_uint8_t lower = tag & 0x7f; local
110 lower |= 0x80;
112 data[bytes++] = lower;
130 ev_uint8_t lower = *data++; local
131 number |= (lower & 0x7f) << shift;
134 if (!(lower & 0x80)) {
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/opt/
H A Dstack1.C73 int lower () const { return 1; } function in struct:adaptor
107 l < a->lower () + 1 + a->upper ())
/openbsd-current/sys/arch/arm64/include/
H A Dintr.h101 int (*lower)(int); member in struct:arm_intr_func
112 #define spllower(cpl) (arm_intr_func.lower(cpl))
/openbsd-current/gnu/gcc/libstdc++-v3/config/os/mingw32/
H A Dctype_noninline.h74 { return (this->is(ctype_base::lower, __c) ? (__c - 'a' + 'A') : __c); }
/openbsd-current/gnu/gcc/libstdc++-v3/config/os/newlib/
H A Dctype_noninline.h72 return (this->is(ctype_base::lower, __c) ? (__x - 'a' + 'A') : __x);
/openbsd-current/gnu/gcc/libstdc++-v3/config/os/windiss/
H A Dctype_inline.h68 case lower:
/openbsd-current/gnu/lib/libstdc++/libstdc++/config/os/mingw32/
H A Dctype_noninline.h59 { return (this->is(ctype_base::lower, __c) ? (__c - 'a' + 'A') : __c); }
/openbsd-current/gnu/lib/libstdc++/libstdc++/config/os/newlib/
H A Dctype_noninline.h57 return (this->is(ctype_base::lower, __c) ? (__x - 'a' + 'A') : __x);
/openbsd-current/gnu/lib/libstdc++/libstdc++/config/os/windiss/
H A Dctype_inline.h61 case lower:
/openbsd-current/regress/lib/libcrypto/bn/
H A Dbn_isqrt.c169 BIGNUM *n, *n_sqr, *lower, *upper, *testcase, *isqrt; local
178 if ((lower = BN_CTX_get(ctx)) == NULL)
179 errx(1, "lower = BN_CTX_get(ctx)");
191 /* lower = 2^LOWER_BITS, upper = 2^UPPER_BITS. */
192 if (!BN_set_bit(lower, LOWER_BITS))
193 errx(1, "BN_set_bit(lower, %d)", LOWER_BITS);
197 if (!bn_rand_in_range(n, lower, upper))
/openbsd-current/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DAMDGPUMCInstLower.h10 /// Header of lower AMDGPU MachineInstrs to their corresponding MCInst.
41 void lower(const MachineInstr *MI, MCInst &OutMI) const;
/openbsd-current/gnu/llvm/llvm/lib/Target/SPIRV/
H A DSPIRVMCInstLower.cpp9 // This file contains code to lower SPIR-V MachineInstrs to their corresponding
23 void SPIRVMCInstLower::lower(const MachineInstr *MI, MCInst &OutMI, function in class:SPIRVMCInstLower
/openbsd-current/gnu/usr.bin/perl/lib/
H A Dlocale.t1059 my %lower = (); # All alpha X for which lc(X) == X and uc(X) != X
1082 @{$posixes{'lower'}} = grep /[[:lower:]]/, map {chr } 0..255;
1087 @{$posixes{'cased'}} = grep /[[:upper:][:lower:]]/i, map {chr } 0..255;
1097 $lower{$_} = $_;
1113 @{$posixes{'lower'}} = grep /[[:lower:]]/, map {chr } 0..255;
1118 @{$posixes{'cased'}} = grep /[[:upper:][:lower:]]/i, map {chr } 0..255;
1125 $lower{$_} = $_;
1134 debug ":lower
[all...]
/openbsd-current/gnu/llvm/llvm/utils/lit/lit/llvm/
H A Dconfig.py105 sanitizers = frozenset(x.lower() for x in sanitizers.split(';'))
326 if m.group(3).lower() != 'windows':
336 isa = m.group(1).lower()
337 vendor = m.group(2).lower()
338 os = m.group(3).lower()
504 exe_dir_props = [self.config.name.lower() + '_tools_dir',
512 self.config.name.lower() + '_libs_dir',
642 exe_dir_props = [self.config.name.lower() + '_tools_dir',
649 lib_dir_props = [self.config.name.lower() + '_libs_dir',
/openbsd-current/gnu/usr.bin/gcc/gcc/f/
H A Dstt.h73 ffebld lower; member in struct:_ffest_dim_list_
168 void ffestt_dimlist_append (ffesttDimList list, ffebld lower, ffebld upper,
/openbsd-current/gnu/llvm/llvm/lib/Target/ARM/Utils/
H A DARMBaseInfo.h40 LS, // Unsigned lower or same Less than or equal
140 return StringSwitch<unsigned>(CC.lower())
168 return StringSwitch<unsigned>(CC.lower())
/openbsd-current/gnu/llvm/llvm/utils/git/
H A Dpre-push.py67 if query.lower() not in ['y', 'n', '']:
70 return query.lower() == 'y'
/openbsd-current/gnu/gcc/libstdc++-v3/config/os/generic/
H A Dctype_inline.h82 case lower:
/openbsd-current/gnu/gcc/libstdc++-v3/src/
H A Dctype.cc38 const ctype_base::mask ctype_base::lower; member in class:ctype_base
/openbsd-current/gnu/lib/libstdc++/libstdc++/config/os/generic/
H A Dctype_inline.h77 case lower:

Completed in 400 milliseconds

1234567891011>>