HomeSort by relevance Sort by last modified time
    Searched defs:lower (Results 1 - 25 of 288) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/rs/cpu_ref/linkloader/utils/
helper.cpp 32 size_t lower = begin & (~0xfUL); local
35 for (size_t i = lower; i < upper; i += 16) {
  /external/chromium_org/third_party/icu/source/samples/case/
ucase.c 26 static const UChar lower[] = {0x61, 0x42, 0x69, 0}; /* lower = "abi" */ local
69 u_fprintf(out, "u_strToUpper(%S, english) -> %S\n", lower, buffer);
  /external/icu/icu4c/source/samples/case/
ucase.c 26 static const UChar lower[] = {0x61, 0x42, 0x69, 0}; /* lower = "abi" */ local
69 u_fprintf(out, "u_strToUpper(%S, english) -> %S\n", lower, buffer);
  /external/chromium_org/content/common/indexed_db/
indexed_db_key_range.h 18 IndexedDBKeyRange(const IndexedDBKey& lower,
24 const IndexedDBKey& lower() const { return lower_; } function in class:content::IndexedDBKeyRange
indexed_db_param_traits.cc 199 WriteParam(m, p.lower());
208 IndexedDBKey lower; local
209 if (!ReadParam(m, iter, &lower))
224 *r = IndexedDBKeyRange(lower, upper, lower_open, upper_open);
229 l->append("<IndexedDBKeyRange>(lower=");
230 LogParam(p.lower(), l);
  /external/chromium_org/third_party/WebKit/Source/core/dom/custom/
CustomElement.cpp 63 AtomicString lower = name.lower(); local
64 if (isValidName(lower, EmbedderNames))
66 embedderCustomElementNames().append(lower);
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBKeyRange.cpp 54 IDBKeyRange::IDBKeyRange(IDBKey* lower, IDBKey* upper, LowerBoundType lowerType, UpperBoundType upperType)
55 : m_lower(lower)
123 IDBKey* lower = scriptValueToIDBKey(toIsolate(context), lowerValue); local
126 if (!lower || !lower->isValid() || !upper || !upper->isValid()) {
130 if (upper->isLessThan(lower)) {
131 exceptionState.throwDOMException(DataError, "The lower key is greater than the upper key.");
134 if (upper->isEqual(lower) && (lowerOpen || upperOpen)) {
135 exceptionState.throwDOMException(DataError, "The lower key and upper key are equal and one of the bounds is open.");
139 return IDBKeyRange::create(lower, upper, lowerOpen ? LowerBoundOpen : LowerBoundClosed, upperOpen ? UpperBoundOpen : UpperBoundClos (…)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebIDBKeyRange.cpp 40 void WebIDBKeyRange::assign(const WebIDBKey& lower, const WebIDBKey& upper, bool lowerOpen, bool upperOpen)
42 if (!lower.isValid() && !upper.isValid())
45 m_private = IDBKeyRange::create(lower, upper, lowerOpen ? IDBKeyRange::LowerBoundOpen : IDBKeyRange::LowerBoundClosed, upperOpen ? IDBKeyRange::UpperBoundOpen : IDBKeyRange::UpperBoundClosed);
53 WebIDBKey WebIDBKeyRange::lower() const function in class:blink::WebIDBKeyRange
57 return WebIDBKey(m_private->lower());
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDGPUMCInstLower.cpp 1 //===- AMDGPUMCInstLower.cpp - Lower AMDGPU MachineInstr to an MCInst -----===//
10 // This file contains code to lower AMDGPU MachineInstrs to their corresponding
30 void AMDGPUMCInstLower::lower(const MachineInstr *MI, MCInst &OutMI) const { function in class:AMDGPUMCInstLower
73 MCInstLowering.lower(BundledInst, MCBundleInst);
79 MCInstLowering.lower(MI, TmpInst);
  /external/chromium_org/ui/gfx/
color_utils_unittest.cc 73 HSL lower = {0.2, 0.3, 0.4}; local
75 EXPECT_TRUE(IsWithinHSLRange(hsl, lower, upper));
78 EXPECT_TRUE(IsWithinHSLRange(hsl, lower, upper));
80 EXPECT_TRUE(IsWithinHSLRange(hsl, lower, upper));
82 EXPECT_TRUE(IsWithinHSLRange(hsl, lower, upper));
84 EXPECT_TRUE(IsWithinHSLRange(hsl, lower, upper));
86 EXPECT_TRUE(IsWithinHSLRange(hsl, lower, upper));
88 EXPECT_TRUE(IsWithinHSLRange(hsl, lower, upper));
93 HSL lower = {0.8, -1, -1}; local
96 EXPECT_TRUE(IsWithinHSLRange(hsl, lower, upper))
    [all...]
  /external/eigen/bench/btl/libs/BLAS/
blas_interface.hh 60 static char lower = 'L'; variable
  /external/elfutils/0.153/libdw/
dwarf_aggregate_size.c 99 Dwarf_Sword lower; local
109 if (INTUSE(dwarf_formsdata) (attr_mem, &lower) != 0)
114 /* Determine default lower bound from language,
128 lower = 0;
141 lower = 1;
148 if (unlikely (lower > upper))
150 count = upper - lower + 1;
  /external/llvm/lib/Target/SystemZ/
SystemZMCInstLower.cpp 1 //===-- SystemZMCInstLower.cpp - Lower MachineInstr to MCInst -------------===//
92 void SystemZMCInstLower::lower(const MachineInstr *MI, MCInst &OutMI) const { function in class:SystemZMCInstLower
  /external/mesa3d/src/gallium/drivers/radeon/
AMDGPUMCInstLower.cpp 1 //===- AMDGPUMCInstLower.cpp - Lower AMDGPU MachineInstr to an MCInst -----===//
10 // This file contains code to lower AMDGPU MachineInstrs to their corresponding
30 void AMDGPUMCInstLower::lower(const MachineInstr *MI, MCInst &OutMI) const { function in class:AMDGPUMCInstLower
73 MCInstLowering.lower(BundledInst, MCBundleInst);
79 MCInstLowering.lower(MI, TmpInst);
  /external/oprofile/libpp/
sample_container.cpp 85 sample_entry lower, upper; local
87 lower.file_loc.filename = upper.file_loc.filename = filename_id;
88 lower.file_loc.linenr = 0;
93 iterator it1 = samples_by_loc.lower_bound(&lower);
  /libcore/luni/src/main/java/java/util/
NavigableSet.java 15 * closest matches for given search targets. Methods {@code lower},
30 * whether lower and upper bounds are inclusive versus exclusive.
70 E lower(E e); method in interface:NavigableSet
  /ndk/sources/android/support/src/musl-ctype/
towctrans.c 10 signed char lower; member in struct:__anon43736
225 static wchar_t __towcase(wchar_t wc, int lower)
228 int lmul = 2*lower-1;
229 int lmask = lower-1;
236 /* special case because the diff between upper/lower is too big */
237 if (lower && (unsigned)wc - 0x10a0 < 0x2e)
240 if (!lower && (unsigned)wc - 0x2d00 < 0x26)
244 int base = casemaps[i].upper + (lmask & casemaps[i].lower);
246 if (casemaps[i].lower == 1)
247 return wc + lower - ((wc-casemaps[i].upper)&1)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/x86_64-linux/32/bits/
ctype_base.h 51 static const mask lower = _ISlower; member in struct:ctype_base
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/x86_64-linux/include/c++/4.6/x86_64-linux/bits/
ctype_base.h 51 static const mask lower = _ISlower; member in struct:ctype_base
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/x86_64-linux/32/bits/
ctype_base.h 50 static const mask lower = _ISlower; member in struct:ctype_base
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/x86_64-linux/bits/
ctype_base.h 50 static const mask lower = _ISlower; member in struct:ctype_base
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/32/bits/
ctype_base.h 51 static const mask lower = 1 << 1; member in struct:ctype_base
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/bits/
ctype_base.h 51 static const mask lower = 1 << 1; member in struct:ctype_base
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/libs/armeabi/include/bits/
ctype_base.h 45 static const mask lower = _L; member in struct:ctype_base
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/libs/armeabi-v7a/include/bits/
ctype_base.h 45 static const mask lower = _L; member in struct:ctype_base

Completed in 519 milliseconds

1 2 3 4 5 6 7 8 91011>>