Home
last modified time | relevance | path

Searched refs:fc (Results 1 – 12 of 12) sorted by relevance

/art/test/474-fp-sub-neg/src/
DMain.java21 float fc = 1f; in floatTest() local
23 f -= fc; in floatTest()
25 nf -= fc; in floatTest()
/art/openjdkjvmti/
Dalloc_manager.cc201 art::FunctionClosure fc([&](art::Thread* thr ATTRIBUTE_UNUSED) { in PauseAllocations() local
204 size_t requested = art::Runtime::Current()->GetThreadList()->RunCheckpoint(&fc); in PauseAllocations()
Dti_stack.cc1097 art::FunctionClosure fc([](art::Thread* self) REQUIRES_SHARED(art::Locks::mutator_lock_) { in NotifyFramePop() local
1100 target->RequestSynchronousCheckpoint(&fc); in NotifyFramePop()
1369 art::FunctionClosure fc([](art::Thread* self) REQUIRES_SHARED(art::Locks::mutator_lock_){ in PopFrame() local
1372 frames.target_->RequestSynchronousCheckpoint(&fc); in PopFrame()
1418 art::FunctionClosure fc([](art::Thread* self) REQUIRES_SHARED(art::Locks::mutator_lock_){ in ForceEarlyReturn() local
1421 frames.target_->RequestSynchronousCheckpoint(&fc); in ForceEarlyReturn()
/art/compiler/utils/
Dassembler_thumb_test_expected.cc.inc17 " 28: dd f8 fc cf ldr.w r12, [sp, #4092]\n"
27 " 48: cd f8 fc cf str.w r12, [sp, #4092]\n"
144 " 1fc: cd f8 ff c7 str.w r12, [sp, #2047]\n"
/art/test/dexdump/
Dcheckers.txt254 0016fc: 1262 |00aa: const/4 v2, #int 6 // #6
354 00183e: 12c2 |0029: const/4 v2, #int -4 // #fc
697 0019fc: 1308 0800 |0000: const/16 v8, #int 8 // #8
1154 002090: d802 08fc |000a: add-int/lit8 v2, v8, #int -4 // #fc
1178 0020e0: d804 08fc |0032: add-int/lit8 v4, v8, #int -4 // #fc
1186 0020fc: 8212 |0040: int-to-float v2, v1
1282 0021fc: 0a00 |005a: move-result v0
1349 0022fc: 3220 3d00 |00da: if-eq v0, v2, 0117 // +003d
1446 0023fc: 1223 |0002: const/4 v3, #int 2 // #2
1520 0024fc: 28b4 |0082: goto 0036 // -004c
[all …]
Dall-dex-files.txt184 0004fc: a700 0102 |002e: sub-float v0, v1, v2
308 0005fc: 2d00 0102 |0000: cmpl-float v0, v1, v2
895 0016fc: 1262 |00aa: const/4 v2, #int 6 // #6
995 00183e: 12c2 |0029: const/4 v2, #int -4 // #fc
1338 0019fc: 1308 0800 |0000: const/16 v8, #int 8 // #8
1795 002090: d802 08fc |000a: add-int/lit8 v2, v8, #int -4 // #fc
1819 0020e0: d804 08fc |0032: add-int/lit8 v4, v8, #int -4 // #fc
1827 0020fc: 8212 |0040: int-to-float v2, v1
1923 0021fc: 0a00 |005a: move-result v0
1990 0022fc: 3220 3d00 |00da: if-eq v0, v2, 0117 // +003d
[all …]
Dconst-method-handle.txt236 0004fc: 0c00 |000a: move-result-object v0
Dall.txt184 0004fc: a700 0102 |002e: sub-float v0, v1, v2
308 0005fc: 2d00 0102 |0000: cmpl-float v0, v1, v2
Dinvoke-custom.txt175 0025fc: 7020 b500 1000 |001e: invoke-direct {v0, v1}, Ljava/lang/AssertionE…
877 0019fc: 1300 18fc |000e: const/16 v0, #int -1000 // #fc18
1885 0020fc: 6e20 b000 2100 |008c: invoke-virtual {v1, v2}, Ljava/io/PrintStream…
1936 0021dc: 1a02 5f01 |00fc: const-string v2, "invokeWrongArgumentsAgain =…
1943 0021fc: 1a02 0200 |010c: const-string v2, " => " // string@0002
2000 0022fc: 7100 0b00 0000 |018c: invoke-static {}, LTestBadBootstrapArguments;…
2267 0024fc: 6e20 b300 1000 |0004: invoke-virtual {v0, v1}, Ljava/io/PrintStream…
3486 0030fc: |[0030fc] TestInvokeCustomWithConcurrentThreads.test…
3794 0032fc: 1a01 a000 |000a: const-string v1, "Throwing ArithmeticExceptio…
4062 0034fc: |[0034fc] TestLinkerMethodMultipleArgumentTypes.add:…
[all …]
Dbytecodes.txt1235 0012fc: 9015 151d |0038: add-int v21, v21, v29
1305 0013fc: a912 1516 |00b8: div-float v18, v21, v22
1339 001484: 6118 1a00 |00fc: sget-wide v24, Lcom/google/android/test/Test;…
/art/runtime/
Ddebugger.cc346 FunctionClosure fc([&](Thread* thread) REQUIRES_SHARED(Locks::mutator_lock_) { in DdmSetThreadNotification() local
352 size_t checkpoints = Runtime::Current()->GetThreadList()->RunCheckpoint(&fc); in DdmSetThreadNotification()
/art/test/710-varhandle-creation/src/
DMain.java40 final char fc = 'c'; field in Main