HomeSort by relevance Sort by last modified time
    Searched refs:pairs (Results 76 - 100 of 831) sorted by null

1 2 34 5 6 7 8 91011>>

  /tools/apksig/src/main/java/com/android/apksig/internal/apk/v2/
V2SchemeVerifier.java 651 // * @+8 bytes pairs
654 ByteBuffer pairs = sliceFromTo(apkSigningBlock, 8, apkSigningBlock.capacity() - 24); local
657 while (pairs.hasRemaining()) {
659 if (pairs.remaining() < 8) {
663 long lenLong = pairs.getLong();
670 int nextEntryPos = pairs.position() + len;
671 if (len > pairs.remaining()) {
674 + ", available: " + pairs.remaining());
676 int id = pairs.getInt();
678 return getByteBuffer(pairs, len - 4)
    [all...]
  /bootable/recovery/applypatch/
applypatch.cpp 101 size_t pair_count = (pieces.size() - 2) / 2; // # of (size, sha1) pairs in filename
102 std::vector<std::pair<size_t, std::string>> pairs; local
109 pairs.push_back({ size, pieces[i * 2 + 3] });
112 // Sort the pairs array so that they are in order of increasing size.
113 std::sort(pairs.begin(), pairs.end());
126 std::vector<unsigned char> buffer(pairs[pair_count - 1].first);
131 for (const auto& pair : pairs) {
171 // Ran off the end of the list of (size, sha1) pairs without finding a match.
  /build/make/tools/droiddoc/templates-pdk/assets/
android-developer-resource-browser.js 198 var pairs = paramStr.split('&');
199 for (var i = 0; i < pairs.length; i++) {
200 var p = pairs[i].split('=');
  /external/ltp/testcases/realtime/
00_Descriptions.txt 67 - Simple program to measure the time between several pairs of calls to
89 average delays are reported for x pairs of such calls.
92 - Measures the time between several pairs of calls to rdtsc(); rdtsc counts
  /dalvik/dx/src/com/android/dx/dex/file/
ValueEncoder.java 323 Collection<NameValuePair> pairs = annotation.getNameValuePairs(); local
324 int size = pairs.size();
333 for (NameValuePair pair : pairs) {
  /external/googletest/googlemock/src/
gmock-matchers.cc 312 static void LogElementMatcherPairVec(const ElementMatcherPairs& pairs,
318 for (Iter it = pairs.begin(); it != pairs.end(); ++it) {
  /external/libchrome/base/strings/
string_split.cc 214 std::vector<StringPiece> pairs = SplitStringPiece( local
217 key_value_pairs->reserve(pairs.size());
220 for (const StringPiece& pair : pairs) {
222 // Don't return here, to allow for pairs without associated
  /external/skia/src/pathops/
SkPathOpsCommon.cpp 325 SkOpCoincidence* pairs = overlaps.isEmpty() ? coincidence : &overlaps; local
327 if (!pairs->apply(DEBUG_ITER_ONLY_PARAMS(SAFETY_COUNT - safetyHatch))) {
332 if (!pairs->findOverlaps(&overlaps DEBUG_ITER_PARAMS(SAFETY_COUNT - safetyHatch))) {
  /external/v8/testing/gmock/src/
gmock-matchers.cc 312 static void LogElementMatcherPairVec(const ElementMatcherPairs& pairs,
318 for (Iter it = pairs.begin(); it != pairs.end(); ++it) {
  /external/curl/packages/vms/
build_curl-config_script.com 123 $ ! Replace between pairs of @ by alternating the elements.
124 $ ! If mis-matched pairs, do not substitute anything.
  /external/opencv/ml/src/
ml_inner_functions.cpp 1101 CvSampleResponsePair* pairs = 0; local
1115 CV_CALL( pairs = (CvSampleResponsePair*)cvAlloc( (sample_count+1)*sizeof(pairs[0])));
1119 pairs[i].sample = samples[i];
1120 pairs[i].mask = (mask) ? (mask[i]) : 0;
1121 pairs[i].response = classes->data.i[i];
1122 pairs[i].index = i;
    [all...]
  /external/valgrind/callgrind/
callgrind_annotate.in     [all...]
  /toolchain/binutils/binutils-2.25/
ylwrap 85 Any number of OUTPUT,DESIRED pairs may be used.
  /external/icu/icu4c/source/tools/gennorm2/
n2builder.cpp 131 UVector32 *compositions; // (trail, composite) pairs
391 const CompositionPair *pairs=leadNorm->getCompositionPairs(length); local
393 if(trail==pairs[i].trail) {
400 if(trail<pairs[i].trail) {
414 const CompositionPair *pairs=norm.getCompositionPairs(length); local
416 uint8_t trailCC=getCC(pairs[i].trail);
427 const CompositionPair *pairs=norm.getCompositionPairs(length); local
429 if(trail==pairs[i].trail) {
430 return pairs[i].composite;
432 if(trail<pairs[i].trail)
768 const CompositionPair *pairs=p->getCompositionPairs(length); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_xrange.py 35 pairs = itertools.izip_longest(xs, ys, fillvalue=sentinel)
36 for i, (x, y) in enumerate(pairs):
  /external/autotest/site_utils/
devserver_history.py 75 pairs = ['%-20s: %s' % (attr, getattr(self, attr)) for attr in dir(self)
78 return '\n'.join(pairs)
  /external/bison/build-aux/
ylwrap 54 Any number of OUTPUT,DESIRED pairs may be used.
  /external/skia/tools/lua/
gradients.lua 84 for k, v in pairs(gradients) do
  /external/v8/src/runtime/
runtime-scopes.cc 133 Object* DeclareGlobals(Isolate* isolate, Handle<FixedArray> pairs, int flags,
139 // Traverse the name/value pairs and set the properties.
140 int length = pairs->length();
142 FeedbackVectorSlot slot(Smi::cast(pairs->get(i))->value());
144 Handle<Object> initial_value(pairs->get(i + 1), isolate);
189 CONVERT_ARG_HANDLE_CHECKED(FixedArray, pairs, 0);
193 return DeclareGlobals(isolate, pairs, flags, feedback_vector);
202 CONVERT_ARG_HANDLE_CHECKED(FixedArray, pairs, 0);
208 return DeclareGlobals(isolate, pairs, flags, feedback_vector);
    [all...]
  /prebuilts/go/darwin-x86/test/
import5.go 29 // Each of these pairs tests both `` vs "" strings
  /prebuilts/go/linux-x86/test/
import5.go 29 // Each of these pairs tests both `` vs "" strings
  /tools/tradefederation/core/prod-tests/src/com/android/media/tests/
Camera2StressTest.java 151 // Parse results from log file that contain the key-value pairs.
155 String[] pairs = line.split("\\|"); local
156 for (String pair : pairs) {
  /external/ImageMagick/www/api/
distort.php 120 <dd> Affine, Perspective, and Bilinear, do least squares fitting of the distrotion when more than the minimum number of control point pairs are provided. </dd>
122 <dd> Perspective, and Bilinear, fall back to a Affine distortion when less than 4 control point pairs are provided. While Affine distortions let you use any number of control point pairs, that is Zero pairs is a No-Op (viewport only) distortion, one pair is a translation and two pairs of control points do a scale-rotate-translate, without any shearing. </dd>
  /prebuilts/go/darwin-x86/src/index/suffixarray/
suffixarray.go 224 // result into match pairs
238 pairs := make([]int, 2*len(indices))
249 pairs[j+0] = i
250 pairs[j+1] = i + len(lit)
251 result[count] = pairs[j : j+2]
  /prebuilts/go/linux-x86/src/index/suffixarray/
suffixarray.go 224 // result into match pairs
238 pairs := make([]int, 2*len(indices))
249 pairs[j+0] = i
250 pairs[j+1] = i + len(lit)
251 result[count] = pairs[j : j+2]

Completed in 2060 milliseconds

1 2 34 5 6 7 8 91011>>