Home
last modified time | relevance | path

Searched refs:operation (Results 1 – 25 of 25) sorted by relevance

/art/libartbase/base/unix_file/
DREADME13 This code will, in general, return -errno on failure. If an operation consisted
15 relevant operation.
/art/compiler/optimizing/
Dinduction_var_range.cc405 } else if (info->op_b->operation == HInductionVarAnalysis::kFetch) { in IsUnitStride()
483 info->operation == HInductionVarAnalysis::kFetch) { in IsConstant()
547 info->operation == HInductionVarAnalysis::kFetch) { in HasFetchInLoop()
574 return trip->operation == HInductionVarAnalysis::kTripCountInBody || in IsBodyTripCount()
575 trip->operation == HInductionVarAnalysis::kTripCountInBodyUnsafe; in IsBodyTripCount()
584 return trip->operation == HInductionVarAnalysis::kTripCountInBodyUnsafe || in IsUnsafeTripCount()
585 trip->operation == HInductionVarAnalysis::kTripCountInLoopUnsafe; in IsUnsafeTripCount()
604 if (trip_expr->type == info->type && trip_expr->operation == HInductionVarAnalysis::kSub) { in GetLinear()
613 trip->operation, in GetLinear()
632 trip->induction_class, trip->operation, &neg, trip->op_b, nullptr, trip->type); in GetLinear()
[all …]
Dinduction_var_analysis.cc657 return CreateInduction(a->induction_class, a->operation, new_a, new_b, a->fetch, type); in TransferAddSub()
669 return CreateInduction(b->induction_class, b->operation, new_a, new_b, b->fetch, type); in TransferAddSub()
679 return CreateInduction(a->induction_class, a->operation, new_a, new_b, a->fetch, type); in TransferAddSub()
698 } else if (a->induction_class != kGeometric || a->operation == kMul) { in TransferNeg()
703 return CreateInduction(a->induction_class, a->operation, new_a, new_b, a->fetch, type); in TransferNeg()
725 b->operation == kMul)) { in TransferMul()
730 return CreateInduction(b->induction_class, b->operation, new_a, new_b, b->fetch, type); in TransferMul()
733 a->operation == kMul)) { in TransferMul()
738 return CreateInduction(a->induction_class, a->operation, new_a, new_b, a->fetch, type); in TransferMul()
911 if (c->operation == kFetch) { in SolveOp()
[all …]
Dcode_generator_x86_64.h239 void HandleBitwiseOperation(HBinaryOperation* operation);
241 void HandleShift(HBinaryOperation* operation);
306 void HandleBitwiseOperation(HBinaryOperation* operation);
314 void HandleShift(HBinaryOperation* operation);
Dinduction_var_analysis.h111 operation(op), in InductionInfo()
117 InductionOp operation; member
Dcode_generator_riscv64.h255 void HandleBinaryOp(HBinaryOperation* operation);
257 void HandleShift(HBinaryOperation* operation);
309 void HandleBinaryOp(HBinaryOperation* operation);
311 void HandleShift(HBinaryOperation* operation);
Dcode_generator_arm_vixl.h384 void HandleBitwiseOperation(HBinaryOperation* operation, Opcode opcode);
388 void HandleShift(HBinaryOperation* operation);
440 void HandleBitwiseOperation(HBinaryOperation* operation);
444 void HandleShift(HBinaryOperation* operation);
/art/test/436-rem-float/
Dinfo.txt1 Tests for floating point modulo (rem) operation.
/art/test/564-checker-bitcount/
Dinfo.txt1 Unit test for 32-bit and 64-bit bit count operation.
/art/test/004-ThreadStress/src-art/
DMain.java647 for (Operation operation : operations) { in runTest()
648 Integer ops = distribution.get(operation); in runTest()
654 distribution.put(operation, ops); in runTest()
771 Operation operation = operations[nextOperation]; in run() local
775 + " is " + operation); in run()
778 if (!operation.perform()) { in run()
809 Operation operation = operations[i]; in run() local
813 + " is " + operation); in run()
817 operation.perform(); in run()
/art/libartbase/base/
Dscoped_flock.cc58 int operation = block ? LOCK_EX : (LOCK_EX | LOCK_NB); in Open()
59 int flock_result = TEMP_FAILURE_RETRY(flock(file->Fd(), operation)); in Open()
/art/test/944-transform-classloaders/
Dinfo.txt6 classloaders. Changes to the internal operation or definition of
/art/test/800-smali/smali/
Db_26594149_5.smali23 # Allowed operation on uninitialized objects.
Db_26594149_2.smali22 # Illegal operation.
Db_26594149_1.smali22 # Illegal operation.
Db_26594149_3.smali24 # Illegal operation.
Db_26594149_4.smali34 # Illegal operation.
/art/libartservice/service/
DREADME.md38 A priority class indicates the priority of an operation. The value affects the
45 - `PRIORITY_BOOT`: Indicates that the operation blocks boot.
47 and the operation is more latency sensitive than usual. It's typically used
51 - `PRIORITY_BACKGROUND`: Indicates that the operation runs in background.
57 [priority class](#priority-classes) of an operation.
/art/runtime/
Dmonitor_inflation.md24 synchronization operation provided by Java. On 32-bit implementations, it is essentially a
50 Monitors are inflated, and `Monitor` structs are allocated on demand, when an operation is
Dmutator_gc_coord.md222 operation that involves a weak reference access, while nonempty checkpoints do.
/art/runtime/interpreter/mterp/
DREADME.txt62 In normal operation, the dedicated register rIBASE
/art/tools/dexfuzz/
DREADME16 In typical operation, you provide DexFuzz with a set of DEX files that are the "seeds"
/art/build/
DAndroid.bp50 "performance-inefficient-vector-operation",
/art/test/565-checker-doublenegbitwise/smali/
DSmaliTests.smali178 # operation incorrectly.
584 # operation incorrectly.
/art/runtime/jni/
Djni_internal.cc2900 const char* operation) in DecodeAndCheckArrayType() argument
2907 operation, in DecodeAndCheckArrayType()