HomeSort by relevance Sort by last modified time
    Searched refs:triplets (Results 1 - 5 of 5) sorted by null

  /external/fonttools/Lib/fontTools/ttLib/
woff2.py 759 triplets = array.array('B', self.glyphStream)
760 nTriplets = len(triplets)
783 dy = withSign(flag, ((flag & 14) << 7) + triplets[tripletIndex])
785 dx = withSign(flag, (((flag - 10) & 14) << 7) + triplets[tripletIndex])
789 b1 = triplets[tripletIndex]
794 dx = withSign(flag, 1 + ((b0 // 12) << 8) + triplets[tripletIndex])
796 1 + (((b0 % 12) >> 2) << 8) + triplets[tripletIndex + 1])
798 b2 = triplets[tripletIndex + 1]
799 dx = withSign(flag, (triplets[tripletIndex] << 4) + (b2 >> 4))
801 ((b2 & 0x0f) << 8) + triplets[tripletIndex + 2]
    [all...]
  /external/python/cpython2/Lib/idlelib/
MultiCall.py 318 # 1. a list of triplets - the sequences it is binded to
344 func, triplets = self.__eventinfo[sequence]
346 for triplet in triplets:
356 func, triplets = self.__eventinfo[virtual]
365 triplets.append(triplet)
370 func, triplets = self.__eventinfo[virtual]
379 triplets.remove(triplet)
391 func, triplets = self.__eventinfo[virtual]
393 for triplet in triplets:
  /external/python/cpython3/Lib/idlelib/
multicall.py 329 # 1. a list of triplets - the sequences it is binded to
356 func, triplets = self.__eventinfo[sequence]
358 for triplet in triplets:
369 func, triplets = self.__eventinfo[virtual]
378 triplets.append(triplet)
383 func, triplets = self.__eventinfo[virtual]
392 triplets.remove(triplet)
404 func, triplets = self.__eventinfo[virtual]
406 for triplet in triplets:
  /external/eigen/test/
sparse_basic.cpp 362 std::vector<TripletType> triplets; local
364 triplets.reserve(ntriplets);
374 triplets.push_back(TripletType(r,c,v));
383 m.setFromTriplets(triplets.begin(), triplets.end());
386 m.setFromTriplets(triplets.begin(), triplets.end(), std::multiplies<Scalar>());
389 m.setFromTriplets(triplets.begin(), triplets.end(), [] (Scalar,Scalar b) { return b; });
623 std::vector<TripletType> triplets; local
    [all...]
  /external/v8/tools/profview/
profile-utils.js 116 // storing flattened triplets of { tickIndex, depth, count }.
121 // The following function helps to encode such triplets.

Completed in 1250 milliseconds