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

1 2 3 4 5 67 8 91011>>

  /art/dex2oat/linker/mips/
relative_patcher_mips32r6_test.cc 47 0x34, 0x12, 0x5E, 0xEE, // auipc s2, high(diff); placeholder = 0x1234
48 0x78, 0x56, 0x52, 0x26, // addiu s2, s2, low(diff); placeholder = 0x5678
49 0x78, 0x56, 0x52, 0x8E, // lw s2, (low(diff))(s2) ; placeholder = 0x5678
66 uint32_t diff = target_offset - (result.second + kAnchorOffset); local
67 diff += (diff & 0x8000) << 1; // Account for sign extension in addiu/lw.
70 static_cast<uint8_t>(diff >> 16), static_cast<uint8_t>(diff >> 24), 0x5E, 0xEE,
71 static_cast<uint8_t>(diff), static_cast<uint8_t>(diff >> 8), 0x52, 0x26
    [all...]
relative_patcher_mips_test.cc 49 0x34, 0x12, 0x12, 0x3C, // lui s2, high(diff); placeholder = 0x1234
51 0x78, 0x56, 0x52, 0x26, // addiu s2, s2, low(diff); placeholder = 0x5678
52 0x78, 0x56, 0x52, 0x8E, // lw s2, (low(diff))(s2) ; placeholder = 0x5678
69 uint32_t diff = target_offset - (result.second + kAnchorOffset); local
70 diff += (diff & 0x8000) << 1; // Account for sign extension in addiu/lw.
74 static_cast<uint8_t>(diff >> 16), static_cast<uint8_t>(diff >> 24), 0x12, 0x3C,
76 static_cast<uint8_t>(diff), static_cast<uint8_t>(diff >> 8), 0x52, 0x26
    [all...]
  /art/dex2oat/linker/x86/
relative_patcher_x86_test.cc 100 uint32_t diff = kTrampolineOffset - (result.second + kCallCode.size()); local
103 static_cast<uint8_t>(diff),
104 static_cast<uint8_t>(diff >> 8),
105 static_cast<uint8_t>(diff >> 16),
106 static_cast<uint8_t>(diff >> 24)
131 uint32_t diff = bss_begin_ + kStringEntryOffset - (result.second + anchor_offset); local
135 0x8b, 0x83, // mov eax, [ebx + diff]
136 static_cast<uint8_t>(diff),
137 static_cast<uint8_t>(diff >> 8),
138 static_cast<uint8_t>(diff >> 16)
163 uint32_t diff = kStringOffset - (result.second + anchor_offset); local
    [all...]
  /art/dex2oat/linker/x86_64/
relative_patcher_x86_64_test.cc 120 uint32_t diff = kTrampolineOffset - (result.second + kCallCode.size()); local
123 static_cast<uint8_t>(diff),
124 static_cast<uint8_t>(diff >> 8),
125 static_cast<uint8_t>(diff >> 16),
126 static_cast<uint8_t>(diff >> 24)
144 uint32_t diff = bss_begin_ + kStringEntryOffset - (result.second + kDexCacheLoadCode.size()); local
147 static_cast<uint8_t>(diff),
148 static_cast<uint8_t>(diff >> 8),
149 static_cast<uint8_t>(diff >> 16),
150 static_cast<uint8_t>(diff >> 24
168 uint32_t diff = kStringOffset - (result.second + kStringReferenceCode.size()); local
    [all...]
  /art/test/660-checker-sad-int/src/
Main.java 46 int diff = x - y; local
47 if (diff < 0) diff = -diff;
48 return diff;
59 int diff = x - y; local
60 return diff >= 0 ? diff : -diff;
71 int diff = x - y local
96 long diff = x - y; local
109 long diff = x - y; local
121 long diff = x - y; local
    [all...]
  /art/tools/ahat/src/main/com/android/ahat/heapdump/
DiffFields.java 36 public static List<DiffedFieldValue> diff(Iterable<FieldValue> current, method in class:DiffFields
87 * Comparator used for sorting fields for the purposes of diff.
  /bionic/libc/arch-arm64/generic/bionic/
strncmp.S 51 #define diff x6 define
91 eor diff, data1, data2 /* Non-zero if differences found. */
92 csinv endloop, diff, xzr, pl /* Last Dword or differences. */
98 /* Not reached the limit, must have found the end or a diff. */
119 orr syndrome, diff, has_nul
156 orr syndrome, diff, has_nul
254 eor diff, data1, data2 /* Non-zero if differences found. */
256 ccmp diff, #0, #0, eq
272 eor diff, data1, data2 /* Non-zero if differences found. */
274 ccmp diff, #0, #0, e
    [all...]
  /bionic/tools/versioner/src/
Driver.cpp 237 auto diff = (end - start) / 1.0ms; local
238 printf("Generated compiler flags for %zu targets in %0.2Lfms\n", types.size(), diff);
  /build/blueprint/bpmodify/
bpmodify.go 106 data, err := diff(src, res)
108 return fmt.Errorf("computing diff: %s", err)
110 fmt.Printf("diff %s bpfmt/%s\n", filename, filename)
265 func diff(b1, b2 []byte) (data []byte, err error) { func
283 data, err = exec.Command("diff", "-uw", f1.Name(), f2.Name()).CombinedOutput()
285 // diff exits with a non-zero status when the files don't match.
  /external/antlr/tool/src/main/java/org/antlr/misc/
Interval.java 126 Interval diff = null; local
129 diff = Interval.create(Math.max(this.a,other.b+1),
135 diff = Interval.create(this.a, other.a-1);
137 return diff;
  /external/brotli/research/
draw_diff.cc 8 /* Tool for drawing diff PPM images between two input PGM images. Normally used
39 void CalculateDiff(int** diff, Image image1, Image image2,
43 diff[i][j] = static_cast<int>(image1[i][j]) - image2[i][j];
48 void DrawDiff(int** diff, Image image1, Image image2,
54 if (max < diff[i][j]) max = diff[i][j];
55 if (min > diff[i][j]) min = diff[i][j];
70 int max_val = std::max(min_val, abs(diff[i][j]));
71 if (diff[i][j] > 0) { /* red *
108 int** diff = new int*[h1]; local
    [all...]
  /external/cldr/tools/cldr-unittest/src/org/unicode/cldr/unittest/
TestLdml2IcuCompleteness.java 87 LinkedHashSet<String> diff = new LinkedHashSet<>(set1); local
88 diff.removeAll(set2);
89 assertEquals(title, Collections.EMPTY_SET, diff);
  /external/e2fsprogs/misc/
findsuper.c 198 time_t now, diff; local
201 diff = now - last;
203 if (diff > 0) {
207 (((sk - skl)) / diff) >> 10, s);
210 if (diff < 5)
212 else if (diff > 20)
  /external/eigen/Eigen/src/Geometry/
ParametrizedLine.h 84 VectorType diff = p - origin(); local
85 return (diff - direction().dot(diff) * direction()).squaredNorm();
  /external/freetype/src/psaux/
psblues.c 286 CF2_Fixed flatFamilyEdge, diff; local
304 diff = cf2_fixedAbs( SUB_INT32( flatEdge, flatFamilyEdge ) );
306 if ( diff < minDiff && diff < csUnitsPerPixel )
309 minDiff = diff;
311 if ( diff == 0 )
322 diff = cf2_fixedAbs( SUB_INT32( flatEdge, flatFamilyEdge ) );
324 if ( diff < minDiff && diff < csUnitsPerPixel )
345 diff = cf2_fixedAbs( SUB_INT32( flatEdge, flatFamilyEdge ) )
    [all...]
  /external/freetype/src/truetype/
ttpload.c 147 FT_Long diff = (FT_Long)entry->Offset - pos; local
150 if ( diff > 0 && diff < dist )
152 dist = diff;
  /external/grpc-grpc/src/core/lib/gpr/
time.cc 164 gpr_timespec diff; local
167 diff.clock_type = a.clock_type;
170 diff.clock_type = GPR_TIMESPAN;
172 diff.tv_nsec = a.tv_nsec - b.tv_nsec;
173 if (diff.tv_nsec < 0) {
174 diff.tv_nsec += GPR_NS_PER_SEC;
178 diff = a;
181 diff = gpr_inf_future(GPR_CLOCK_REALTIME);
184 diff = gpr_inf_past(GPR_CLOCK_REALTIME);
186 diff.tv_sec = a.tv_sec - b.tv_sec
    [all...]
  /external/grpc-grpc-java/context/src/main/java/io/grpc/
Deadline.java 150 long diff = this.deadlineNanos - that.deadlineNanos; local
151 if (diff < 0) {
153 } else if (diff > 0) {
  /external/icu/icu4c/source/common/
uarrsort.cpp 77 int32_t diff=cmp(context, item, array+i*itemSize); local
78 if(diff==0) {
92 } else if(diff<0) {
101 int32_t diff=cmp(context, item, array+start*itemSize); local
102 if(diff==0) {
104 } else if(diff<0) {
  /external/icu/icu4c/source/test/cintltst/
sorttest.c 180 int32_t diff=u_strCompare(p->s, STR_LEN, q->s, STR_LEN, FALSE); local
181 if(diff==0) {
189 diff=ucol_strcoll(coll, p->s, STR_LEN, q->s, STR_LEN);
190 if(diff>=0) {
  /external/iperf3/src/
timer.c 156 struct iperf_time now, diff; local
165 past = iperf_time_diff(&timers->time, &now, &diff);
169 usecs = iperf_time_in_usecs(&diff);
  /external/jdiff/src/jdiff/
ClassDiff.java 84 public static String diff(ClassAPI oldClass, ClassAPI newClass) { method in class:ClassDiff
  /external/libaom/libaom/av1/encoder/x86/
highbd_block_error_intrin_sse2.c 60 const int64_t diff = coeff[i + j] - dqcoeff[i + j]; local
61 error += diff * diff;
  /external/libavc/common/
ih264_list.c 430 WORD32 diff; local
448 diff = *pi4_wr_idx - *pi4_rd_idx;
450 if(diff < ps_list->i4_buf_max_idx)
519 WORD32 diff; local
534 diff = *pi4_wr_idx - *pi4_rd_idx;
537 if(diff > 0)
  /external/libgsm/src/
add.c 31 longword diff = (longword)a - (longword)b; local
32 return saturate(diff);

Completed in 2058 milliseconds

1 2 3 4 5 67 8 91011>>