Home
last modified time | relevance | path

Searched refs:off (Results 1 – 15 of 15) sorted by relevance

/art/test/667-checker-simd-alignment/src/
DMain.java204 static void staticallyUnknownAligned(int[] a, int off) { in staticallyUnknownAligned() argument
208 a[off + i] += 1; in staticallyUnknownAligned()
249 static void staticallyUnknownAlignedN(int[] a, int off, int n) { in staticallyUnknownAlignedN() argument
253 a[off + i] += 1; in staticallyUnknownAlignedN()
300 for (int off = 0; off <= 8; off++) { in test5()
302 staticallyUnknownAligned(a, off); in test5()
304 int e = (off <= i && i < off + 9) ? 1 : 0; in test5()
311 for (int off = 0; off <= 8; off++) { in test6()
314 staticallyUnknownAlignedN(a, off, n); in test6()
316 int e = (off <= i && i < off + n) ? 1 : 0; in test6()
/art/test/580-crc32/src/
DMain.java157 private static long CRC32ByteArray(byte[] bytes, int off, int len) { in CRC32ByteArray() argument
159 crc32.update(bytes, off, len); in CRC32ByteArray()
185 private static boolean CRC32ByteArrayThrowsAIOOBE(byte[] bytes, int off, int len) { in CRC32ByteArrayThrowsAIOOBE() argument
188 crc32.update(bytes, off, len); in CRC32ByteArrayThrowsAIOOBE()
217 private static long CRC32BytesUsingUpdateInt(byte[] bytes, int off, int len) { in CRC32BytesUsingUpdateInt() argument
220 crc32.update(bytes[off++]); in CRC32BytesUsingUpdateInt()
319 int off = rnd.nextInt(bytes.length / 2); in TestCRC32UpdateBytes() local
321 assertEqual(CRC32BytesUsingUpdateInt(bytes, off, len), in TestCRC32UpdateBytes()
322 CRC32ByteArray(bytes, off, len)); in TestCRC32UpdateBytes()
342 off = rnd.nextInt(bytes.length - len); in TestCRC32UpdateBytes()
[all …]
/art/runtime/interpreter/mterp/mips/
Dmain.S629 #define LOAD_RB_OFF(rd, rbase, off) lw rd, off(rbase) argument
630 #define STORE_RB_OFF(rd, rbase, off) sw rd, off(rbase) argument
632 #define STORE64_off(rlo, rhi, rbase, off) \ argument
633 sw rlo, off(rbase); \
634 sw rhi, (off+4)(rbase)
635 #define LOAD64_off(rlo, rhi, rbase, off) \ argument
636 lw rlo, off(rbase); \
637 lw rhi, (off+4)(rbase)
643 #define STORE64_off_F(rlo, rhi, rbase, off) \ argument
644 s.s rlo, off(rbase); \
[all …]
Darray.S192 EAS1(a1, rPC, a1) # a1 <- PC + BBBBbbbb*2 (array data off.)
/art/test/1924-frame-pop-toggle/
Dinfo.txt3 This tests toggling frame pop off and on.
/art/libartbase/base/unix_file/
Dfd_file.cc475 off_t off = static_cast<off_t>(offset); in Copy() local
477 if (offset < 0 || static_cast<int64_t>(off) != offset || in Copy()
479 sz > std::numeric_limits<off_t>::max() - off) { in Copy()
488 off_t end = off + sz; in Copy()
489 while (off != end) { in Copy()
491 sendfile(Fd(), input_file->Fd(), &off, end - off)); in Copy()
498 if (lseek(input_file->Fd(), off, SEEK_SET) != off) { in Copy()
/art/test/175-alloc-big-bignums/
Dinfo.txt10 to exhaust device memory, and kill off all processes on the device, including the
/art/tools/luci/config/
Dluci-logdog.cfg4 # off of the chromium settings.
/art/test/044-proxy/src/
DBasicTest.java139 public int trapezoid(int x, double off, int y); in trapezoid() argument
185 public int trapezoid(int x, double off, int y) { in trapezoid() argument
186 System.out.println("--- trap " + x + "," + y + "," + off); in trapezoid()
/art/test/1940-ddms-ext/
Dddm_ext.cc73 jint off = env->GetIntField(chunk, offset_field_id); in Java_art_Test1940_processChunk() local
87 &byte_data[off], in Java_art_Test1940_processChunk()
/art/runtime/
Druntime_options.def158 RUNTIME_OPTIONS_KEY (unsigned int, GlobalRefAllocStackTraceLimit, 0) // 0 = off
/art/runtime/interpreter/mterp/arm/
Darray.S200 add r1, rPC, r1, lsl #1 @ r1<- PC + BBBBbbbb*2 (array data off.)
/art/runtime/interpreter/mterp/mips64/
Darray.S193 dlsa a1, a1, rPC, 1 # a1 <- PC + BBBBbbbb*2 (array data off.)
/art/runtime/arch/mips64/
Dquick_entrypoints_mips64.S1094 # pop a4, a5, s1(rSELF), s8, ra off of the stack
1195 # pop a4, a5, s0(rSUSPEND), s1(rSELF), s8, ra off of the stack
/art/compiler/optimizing/
Dcode_generator_mips.cc1448 int32_t off = source.GetStackIndex(); in MoveLocation() local
1450 __ LoadFromOffset(kLoadDoubleword, r, SP, off); in MoveLocation()