HomeSort by relevance Sort by last modified time
    Searched full:loval (Results 1 - 6 of 6) sorted by null

  /external/chromium-trace/trace-viewer/src/base/
sorted_array_utils.js 14 * Finds the first index in the array whose value is >= loVal.
23 * @param {number} loVal Value for which to search.
25 * are < loVal, or ary.length if loVal is greater than all elements in
28 function findLowIndexInSortedArray(ary, mapFn, loVal) {
38 comparison = mapFn(ary[i]) - loVal;
54 * intersects the provided loVal, or if no intersection is found,
55 * the index of the first interval whose start is > loVal.
62 * sorted in ascending order by loVal.
70 * @param {number} loVal The low value for the search
    [all...]
  /external/chromium/chrome/browser/resources/gpu_internals/
sorted_array_utils.js 13 * Finds the first index in the array whose value is >= loVal.
22 * @param {number} loVal Value for which to search.
24 * are < loVal, or ary.length if loVal is greater than all elements in
27 function findLowIndexInSortedArray(ary, mapFn, loVal) {
37 comparison = mapFn(ary[i]) - loVal;
53 * intersects the provided loVal, or if no intersection is found,
54 * the index of the first interval whose start is > loVal.
61 * sorted in ascending order by loVal.
69 * @param {number} loVal The low value for the search
    [all...]
  /external/libvorbis/vq/
huffbuild.c 68 int loval=0; local
82 loval=atoi(argv[2]);
133 for(j=loval;j<vals;j++)hist[j]=guard;
  /external/libvorbis/lib/
sharedbook.c 411 unsigned long loval=lo; local
414 if(loval>0x7fff)loval=0x7fff;
417 0x80000000UL | (loval<<15) | hival;
  /external/clang/lib/Sema/
SemaStmt.cpp 757 llvm::APSInt LoVal;
763 CheckConvertedConstantExpression(Lo, CondType, LoVal, CCEK_CaseValue);
772 LoVal = Lo->EvaluateKnownConstInt(Context);
786 ConvertIntegerToTypeWarnOnOverflow(LoVal, CondWidth, CondIsSigned,
799 CaseRanges.push_back(std::make_pair(LoVal, CS));
801 CaseVals.push_back(std::make_pair(LoVal, CS));
874 llvm::APSInt &LoVal = CaseRanges[i].first;
    [all...]
  /external/llvm/lib/Target/Sparc/
SparcISelLowering.cpp 374 SDValue LoVal;
379 LoVal = DAG.getLoad(MVT::i32, dl, Chain, FIPtr,
385 LoVal = DAG.getCopyFromReg(Chain, dl, loReg, MVT::i32);
388 DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, LoVal, HiVal);
438 SDValue LoVal = DAG.getLoad(MVT::i32, dl, Chain, FIPtr2,
443 DAG.getNode(ISD::BUILD_PAIR, dl, MVT::i64, LoVal, HiVal);
    [all...]

Completed in 482 milliseconds