HomeSort by relevance Sort by last modified time
    Searched refs:operations (Results 1 - 25 of 1122) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/arm/
ldr-bad.d 1 # name: Unpredictable operations - ldr - arm
ldr-t-bad.d 1 # name: Unpredictable operations - ldr - thumb
vfp1.s 9 @ Comparison operations
16 @ Monadic data operations
23 @ Dyadic data operations
35 @ Load/store operations
40 @ Load/store multiple operations
56 @ Conversion operations
69 @ ARM from VFP operations
74 @ VFP From ARM operations
82 @ Single register operations (compare-zero):
88 @ Two register comparison operations
    [all...]
vfp1_t2.s 12 @ Comparison operations
19 @ Monadic data operations
26 @ Dyadic data operations
38 @ Load/store operations
43 @ Load/store multiple operations
59 @ Conversion operations
72 @ ARM from VFP operations
77 @ VFP From ARM operations
85 @ Single register operations (compare-zero):
91 @ Two register comparison operations
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/detail/
posix_fd_set_adapter.hpp 57 void set(reactor_op_queue<socket_type>& operations, op_queue<operation>& ops)
59 reactor_op_queue<socket_type>::iterator i = operations.begin();
60 while (i != operations.end())
66 operations.cancel_operations(op_iter, ops, ec);
86 void perform(reactor_op_queue<socket_type>& operations,
89 reactor_op_queue<socket_type>::iterator i = operations.begin();
90 while (i != operations.end())
94 operations.perform_operations(op_iter, ops);
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/cris/
binop.s 2 ; Generic binary operations supporting all sizes and their various
unop.s 2 ; Generic unary operations supporting all sizes and their various
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mips/
odd-float.s 1 # Source file used to test operations on odd numbered floating point
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic6x/
parallel-bad-2.s 1 # Test bad positions for parallel operations.
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
HasPositionalPredChecker.java 30 import org.apache.xpath.operations.Div;
31 import org.apache.xpath.operations.Minus;
32 import org.apache.xpath.operations.Mod;
33 import org.apache.xpath.operations.Mult;
34 import org.apache.xpath.operations.Plus;
35 import org.apache.xpath.operations.Quo;
36 import org.apache.xpath.operations.Variable;
109 (pred instanceof org.apache.xpath.operations.Number) ||
  /art/test/593-checker-shift-and-simplifier/src/
Main.java 23 // A very particular set of operations that caused a double removal by the
26 /// CHECK-START-ARM: int Main.operations() instruction_simplifier_arm (after)
31 /// CHECK-START-ARM64: int Main.operations() instruction_simplifier_arm64 (after)
35 private static int operations() { method in class:Main
44 if (operations() != 32) {
50 if ($noinline$runSmaliTest("operations") != 32) {
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
String.java 21 package org.apache.xpath.operations;
Gt.java 21 package org.apache.xpath.operations;
Gte.java 21 package org.apache.xpath.operations;
Lt.java 21 package org.apache.xpath.operations;
Lte.java 21 package org.apache.xpath.operations;
  /external/libcups/cups/
ipp-private.h 55 const ipp_op_t *operations; /* Allowed operations for this attr */ member in struct:__anon24468
  /external/python/cpython3/Tools/pybench/
Numbers.py 6 operations = 30 * 5 variable in class:CompareIntegers
202 operations = 30 * 5 variable in class:CompareFloats
398 operations = 30 * 5 variable in class:CompareFloatsIntegers
594 operations = 30 * 5 variable in class:CompareLongs
  /packages/providers/TvProvider/src/com/android/providers/tv/
PackageRemovedReceiver.java 45 ArrayList<ContentProviderOperation> operations = new ArrayList<>(); local
51 operations.add(ContentProviderOperation.newDelete(TvContract.Channels.CONTENT_URI)
53 operations.add(ContentProviderOperation.newDelete(TvContract.Programs.CONTENT_URI)
55 operations.add(ContentProviderOperation
58 operations.add(ContentProviderOperation
61 operations.add(ContentProviderOperation
68 results = cr.applyBatch(TvContract.AUTHORITY, operations);
  /external/tensorflow/tensorflow/java/src/test/java/org/tensorflow/
GraphTest.java 80 Iterator<Operation> iterator = g.operations();
81 HashSet<Operation> operations; local
85 operations = new HashSet<>();
86 operations.add(TestUtil.constant(g, "Const-A", Float.valueOf(1.0f)).op());
87 operations.add(TestUtil.constant(g, "Const-B", Integer.valueOf(23)).op());
88 operations.add(TestUtil.constant(g, "Const-C", Double.valueOf(1.618)).op());
90 iterator = g.operations();
93 assertTrue(operations.remove(iterator.next()));
96 assertTrue(operations.remove(iterator.next()));
99 assertTrue(operations.remove(iterator.next()))
    [all...]
  /system/update_engine/scripts/update_payload/
block_tracer.py 38 def _TraceBlock(block, skip, trace_out_file, operations, base_name):
39 """Trace the origin of a given block through a sequence of operations.
43 further tries to trace transitive origins through MOVE operations. It is
45 sweep through the operation sequence. It dumps a log of operations and
53 operations: the sequence of operations
56 # Traverse operations backwards.
57 for op, op_name in common.OperationIter(operations, base_name,
104 is_kernel: trace through kernel (True) or rootfs (False) operations
107 operations = self.payload.manifest.kernel_install_operation
    [all...]
  /external/deqp/modules/gles31/functional/
es31fAtomicCounterTests.cpp 91 , operations ((Operation)0)
101 Operation operations; member in struct:deqp::gles31::Functional::__anon18696::AtomicCounterTest::TestSpec
140 if (m_spec.operations & OPERATION_INC)
143 if (m_spec.operations & OPERATION_DEC)
146 if (m_spec.operations == OPERATION_GET)
148 else if (m_spec.operations & OPERATION_GET)
241 if ((spec.operations & OPERATION_GET) != 0 && spec.operations != OPERATION_GET)
244 if ((spec.operations & OPERATION_INC) != 0)
247 if ((spec.operations & OPERATION_DEC) != 0
1318 const AtomicCounterTest::Operation operations[] = local
1386 const AtomicCounterTest::Operation operations[] = local
    [all...]
  /frameworks/base/core/java/android/net/
NetworkStatsHistory.java 86 private long[] operations; field in class:NetworkStatsHistory
99 public long operations; field in class:NetworkStatsHistory.Entry
118 if ((fields & FIELD_OPERATIONS) != 0) operations = new long[initialSize];
136 operations = readLongArray(in);
150 writeLongArray(out, operations, bucketCount);
164 operations = new long[bucketStart.length];
179 operations = readVarLongArray(in);
191 || txPackets.length != bucketCount || operations.length != bucketCount) {
205 writeVarLongArray(out, operations, bucketCount);
284 entry.operations = getLong(operations, i, UNKNOWN)
325 long operations = entry.operations; local
577 final long operations = rxBytes \/ 2048; local
    [all...]
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
ImportTestResolver.java 36 ArrayList<ContentProviderOperation> operations) {
38 return mProvider.applyBatch(operations);
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/i860/
pseudo-ops01.s 1 # Test some assembler pseudo-operations:

Completed in 942 milliseconds

1 2 3 4 5 6 7 8 91011>>