HomeSort by relevance Sort by last modified time
    Searched defs:in_range (Results 1 - 17 of 17) sorted by null

  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-nios2/
relax_cjmp.s 12 bne r2, r3, in_range
19 in_range: label
relax_section.s 7 bne r2, r3, in_range
10 in_range: label
13 br in_range
relax_ujmp.s 16 br in_range
21 in_range: label
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/src/
ctype.cpp 283 static bool in_range(wchar_t c, size_t upperBound) { function in struct:_WCharIndexT
291 static bool in_range(wchar_t c, size_t upperBound) { function in struct:_WCharIndexT
385 { return _WCharIndex::in_range(c, ctype<char>::table_size) && (table[c] & M); }
396 return _WCharIndex::in_range(c, ctype<char>::table_size) && (m & table[c]);
406 *vec = _WCharIndex::in_range(c, ctype<char>::table_size) ? table[c] : ctype_base::mask(0);
425 return _WCharIndex::in_range(c, ctype<char>::table_size) ? (wchar_t)_S_upper[c]
433 *low = _WCharIndex::in_range(c, ctype<char>::table_size) ? (wchar_t)_S_upper[c]
440 return _WCharIndex::in_range(c, ctype<char>::table_size) ? (wchar_t)_S_lower[c]
448 *low = _WCharIndex::in_range(c, ctype<char>::table_size) ? (wchar_t)_S_lower[c]
  /prebuilts/ndk/r13/sources/cxx-stl/stlport/src/
ctype.cpp 283 static bool in_range(wchar_t c, size_t upperBound) { function in struct:_WCharIndexT
291 static bool in_range(wchar_t c, size_t upperBound) { function in struct:_WCharIndexT
385 { return _WCharIndex::in_range(c, ctype<char>::table_size) && (table[c] & M); }
396 return _WCharIndex::in_range(c, ctype<char>::table_size) && (m & table[c]);
406 *vec = _WCharIndex::in_range(c, ctype<char>::table_size) ? table[c] : ctype_base::mask(0);
425 return _WCharIndex::in_range(c, ctype<char>::table_size) ? (wchar_t)_S_upper[c]
433 *low = _WCharIndex::in_range(c, ctype<char>::table_size) ? (wchar_t)_S_upper[c]
440 return _WCharIndex::in_range(c, ctype<char>::table_size) ? (wchar_t)_S_lower[c]
448 *low = _WCharIndex::in_range(c, ctype<char>::table_size) ? (wchar_t)_S_lower[c]
  /external/eigen/unsupported/test/
cxx11_tensor_broadcast_sycl.cpp 31 array<int, 4> in_range = {{2, 3, 5, 7}}; local
33 array<int, 4> out_range; // = in_range * broadcasts
35 out_range[i] = in_range[i] * broadcasts[i];
37 Tensor<float, 4> input(in_range);
40 for (size_t i = 0; i < in_range.size(); ++i)
50 TensorMap<Tensor<float, 4>> gpu_in(gpu_in_data, in_range);
  /external/selinux/libsepol/src/
util.c 131 unsigned int in_range = 0; local
150 if (in_range && next_bit_in_range(bit, xperms->perms)) {
156 in_range = 1;
163 if (in_range) {
171 if (in_range) {
184 if (in_range)
185 in_range = 0;
kernel_to_cil.c 1571 unsigned int in_range = 0; local
1590 if (in_range && next_bit_in_range(bit, xperms->perms))
    [all...]
module_to_cil.c 612 unsigned int in_range = 0; local
623 if (in_range && next_bit_in_range(bit, xperms->perms)) {
629 in_range = 1;
641 if (in_range) {
643 in_range = 0;
650 if (in_range) {
652 in_range = 0;
    [all...]
  /external/syslinux/core/lwip/src/core/ipv4/
ip_addr.c 114 #define in_range(c, lo, up) ((u8_t)c >= lo && (u8_t)c <= up) macro
115 #define isprint(c) in_range(c, 0x20, 0x7f)
116 #define isdigit(c) in_range(c, '0', '9')
117 #define isxdigit(c) (isdigit(c) || in_range(c, 'a', 'f') || in_range(c, 'A', 'F'))
118 #define islower(c) in_range(c, 'a', 'z')
  /external/v8/src/
bignum-dtoa.cc 609 bool in_range; local
613 in_range = Bignum::PlusCompare(*numerator, *delta_plus, *denominator) >= 0;
615 in_range = Bignum::PlusCompare(*numerator, *delta_plus, *denominator) > 0;
617 if (in_range) {
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
findhalfpel.cpp 77 Int in_range[9] = {0, 1, 1, 1, 1, 1, 1, 1, 1}; /* 3/29/01 */ local
101 in_range[1] = in_range[7] = in_range[8] = 0;
103 in_range[3] = in_range[4] = in_range[5] = 0;
105 in_range[1] = in_range[2] = in_range[3] = 0
198 Int in_range[8]; \/* 3\/29\/01 *\/ local
    [all...]
  /external/v8/src/mips/
assembler-mips.cc 1527 bool in_range = ((ipc ^ static_cast<uint32_t>(target)) >> local
1552 bool in_range = ((ipc ^ static_cast<uint32_t>(target)) >> local
    [all...]
  /external/pcre/dist2/src/
pcre2_jit_compile.c 4343 BOOL in_range; local
    [all...]
  /toolchain/binutils/binutils-2.25/gas/config/
tc-aarch64.c 1050 int in_range;
1071 in_range = 0;
1074 if (in_range)
1098 if (in_range)
1126 in_range = 0;
1128 while (skip_past_comma (&str) || (in_range = 1, *str == '-'));
1048 int in_range; local
    [all...]
tc-arm.c 1610 int in_range = 0; local
    [all...]
  /external/valgrind/VEX/priv/
guest_ppc_toIR.c 25775 IRExpr *pos, *neg, *valid, *zero, *sign_digit, *in_range; local
    [all...]

Completed in 1639 milliseconds