HomeSort by relevance Sort by last modified time
    Searched defs:diff (Results 526 - 550 of 1231) sorted by null

<<21222324252627282930>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/raw/
Nat192.java 191 public static boolean diff(int[] x, int xOff, int[] y, int yOff, int[] z, int zOff) method in class:Nat192
Nat224.java 239 public static boolean diff(int[] x, int xOff, int[] y, int yOff, int[] z, int zOff) method in class:Nat224
    [all...]
Nat256.java 289 public static boolean diff(int[] x, int xOff, int[] y, int yOff, int[] z, int zOff) method in class:Nat256
    [all...]
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/math/raw/
Nat.java 220 int z_i = z[zOff + i], diff = z_i ^ x[xOff + i]; local
221 z_i ^= (diff & mask);
229 // int z_i = z[zOff + i], diff = z_i ^ x[xOff + i];
230 // z_i ^= (diff & half);
231 // z_i ^= (diff & rest);
Nat192.java 195 public static boolean diff(int[] x, int xOff, int[] y, int yOff, int[] z, int zOff) method in class:Nat192
Nat224.java 243 public static boolean diff(int[] x, int xOff, int[] y, int yOff, int[] z, int zOff) method in class:Nat224
    [all...]
Nat256.java 293 public static boolean diff(int[] x, int xOff, int[] y, int yOff, int[] z, int zOff) method in class:Nat256
    [all...]
  /external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
TestMetazoneTransitions.java 380 Pair<ZoneTransitions, ZoneTransitions> diff = transitions local
383 + ":\t" + diff);
  /external/cldr/tools/java/org/unicode/cldr/util/
DayPeriodInfo.java 53 int diff = start - o.start; local
54 if (diff != 0) {
55 return diff;
57 diff = end - o.end;
58 if (diff != 0) {
59 return diff;
PluralSnapshot.java 172 int diff = count - other.count; local
173 if (diff != 0) return diff;
174 diff = UnicodeSet.compare(found, other.found);
175 if (diff != 0) return diff;
179 diff = p.compareTo(otherOne);
180 if (diff != 0) return diff;
183 diff = plurals[i].compareTo(other.plurals[i])
    [all...]
  /external/deqp/modules/gles2/performance/
es2pShaderOperatorTests.cpp 405 const Vec2 diff = data[i] - mid; local
407 slopeNumerator += diff.x()*diff.y();
408 slopeDenominator += diff.x()*diff.x();
429 const float diff = estY - data[i].y(); local
430 error += diff*diff;
448 const float diff = meanY - data[i].y(); local
449 error += diff*diff
    [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderBuiltinVarTests.cpp 193 float diff = zFar - zNear; local
194 c.color.xyz() = tcu::Vec3(zNear, zFar, diff*0.5f + 0.5f);
241 src << "\t" << (m_isVertexCase ? "v_color" : "o_color") << " = vec4(gl_DepthRange.near, gl_DepthRange.far, gl_DepthRange.diff*0.5 + 0.5, 1.0);\n";
    [all...]
  /external/deqp/modules/gles3/performance/
es3pShaderOperatorTests.cpp 405 const Vec2 diff = data[i] - mid; local
407 slopeNumerator += diff.x()*diff.y();
408 slopeDenominator += diff.x()*diff.x();
429 const float diff = estY - data[i].y(); local
430 error += diff*diff;
448 const float diff = meanY - data[i].y(); local
449 error += diff*diff
    [all...]
  /external/deqp-deps/SPIRV-Tools/source/opt/
loop_descriptor.cpp 738 // We retrieve the number of iterations using the following formula, diff /
739 // |step_value| where diff is calculated differently according to the
740 // |condition| and uses the |condition_value| and |init_value|. If diff /
744 int64_t diff = 0; local
752 diff = condition_value - init_value;
754 // If the operation is a less then operation then the diff and step must
757 if ((diff < 0 && step_value > 0) || (diff > 0 && step_value < 0)) {
768 diff = init_value - condition_value;
770 // If the operation is a greater than operation then the diff and ste
    [all...]
  /external/f2fs-tools/fsck/
resize.c 17 u_int32_t sit_segments, nat_segments, diff, total_meta_segments; local
79 u_int32_t diff = max_sit_bitmap_size + local
82 set_sb(cp_payload, F2FS_BLK_ALIGN(diff));
127 diff = total_meta_segments % segs_per_zone;
128 if (diff)
130 (segs_per_zone - diff));
  /external/f2fs-tools/mkfs/
f2fs_format.c 185 u_int64_t zone_align_start_offset, diff; local
331 u_int32_t diff = max_sit_bitmap_size + local
334 set_sb(cp_payload, F2FS_BLK_ALIGN(diff));
380 diff = total_meta_segments % (c.segs_per_zone);
381 if (diff)
383 (c.segs_per_zone - diff));
    [all...]
  /external/googletest/googlemock/test/
gmock-generated-matchers_test.cc 127 const int diff = lhs - rhs_; variable
128 if (diff > 0) {
129 *listener << "which is " << diff << " more than " << rhs_;
130 } else if (diff == 0) {
133 *listener << "which is " << -diff << " less than " << rhs_;
623 *result_listener->stream() << "diff == " << (x + y - arg);
649 EXPECT_EQ("diff == -1", Explain(m2, 4));
    [all...]
  /external/guava/guava-tests/test/com/google/common/hash/
HashTestUtils.java 253 int diff = 0x0; // bitset for output bits with different values local
257 while (same != 0xffffffff || diff != 0xffffffff) {
267 diff |= (hash1 ^ hash2);
275 "as follows: " + ~(same & diff) + ". This was " +
294 int[] diff = new int[hashBits]; local
307 diff[k] += 1;
313 double prob = (double) diff[j] / (double) (diff[j] + same[j]);
338 boolean diff = false;
340 while (!diff) {
384 int[] diff = new int[hashBits]; local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/timezone/
TimeZoneAliasTest.java 102 int diff = testZone.findOffsetOrdering(last, diffDate); local
103 if (diff != 0) {
105 + ", " + Zone.formatHours(diff) + "hr");
195 int diff = testZone.findOffsetOrdering(last, diffDate); external variable declarations
196 if (diff != 0) {
308 //System.out.println("-diff: " + id + "\t" + other.id);
341 //System.out.println("+diff: " + (result/HOUR) + "\t" + dateDiffFound);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
CollectionUtilities.java 586 int diff; local
593 diff = CollectionUtilities.compare(iterator1.next(), iterator2.next());
594 if (diff != 0) {
595 return diff;
607 int diff = o1.size() - o2.size(); local
608 if (diff != 0) {
609 return diff;
623 int diff = o1.size() - o2.size(); local
624 if (diff != 0) {
625 return diff;
659 int diff = compare(a.getKey(), b.getKey()); local
667 int diff = o1.size() - o2.size(); local
    [all...]
  /external/icu/icu4c/source/test/cintltst/
bocu1tst.c 226 int32_t prev, count, diff; member in struct:Bocu1Rx
235 packDiff(int32_t diff);
279 * @param diff difference value -0x10ffff..0x10ffff
287 packDiff(int32_t diff) {
290 if(diff>=BOCU1_REACH_NEG_1) {
292 if(diff<=BOCU1_REACH_POS_1) {
294 return 0x01000000|(BOCU1_MIDDLE+diff);
295 } else if(diff<=BOCU1_REACH_POS_2) {
297 diff-=BOCU1_REACH_POS_1+1;
300 } else if(diff<=BOCU1_REACH_POS_3)
    [all...]
udatatst.c 1579 uint8_t diff[8]; local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/
TimeZoneAliasTest.java 99 int diff = testZone.findOffsetOrdering(last, diffDate); local
100 if (diff != 0) {
102 + ", " + Zone.formatHours(diff) + "hr");
192 int diff = testZone.findOffsetOrdering(last, diffDate); external variable declarations
193 if (diff != 0) {
305 //System.out.println("-diff: " + id + "\t" + other.id);
338 //System.out.println("+diff: " + (result/HOUR) + "\t" + dateDiffFound);
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
CollectionUtilities.java 583 int diff; local
590 diff = CollectionUtilities.compare(iterator1.next(), iterator2.next());
591 if (diff != 0) {
592 return diff;
604 int diff = o1.size() - o2.size(); local
605 if (diff != 0) {
606 return diff;
620 int diff = o1.size() - o2.size(); local
621 if (diff != 0) {
622 return diff;
656 int diff = compare(a.getKey(), b.getKey()); local
664 int diff = o1.size() - o2.size(); local
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/timezone/
ICUZDump.java 106 long diff = hit - lot; local
107 if (diff <= tick) {
110 long medt = lot + ((diff / 2) / tick) * tick;

Completed in 1727 milliseconds

<<21222324252627282930>>