HomeSort by relevance Sort by last modified time
    Searched defs:ops (Results 101 - 125 of 448) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/ltp/utils/ffsb-6.0-rc2/
ffsb_op.h 79 unsigned int ops[FFSB_NUMOPS]; member in struct:ffsb_op_results
91 /* Setup the ops for the benchmark */
94 /* setup the ops for aging the filesystem */
  /external/swiftshader/third_party/LLVM/unittests/Transforms/Utils/
Cloning.cpp 125 std::vector<Value *> ops; local
126 ops.push_back(Z);
127 GetElementPtrInst *GEP = GetElementPtrInst::Create(V, ops);
  /external/tensorflow/tensorflow/cc/ops/
while_loop.cc 16 #include "tensorflow/cc/ops/while_loop.h"
19 #include "tensorflow/cc/ops/control_flow_ops_internal.h"
20 #include "tensorflow/cc/ops/standard_ops.h"
25 namespace ops { namespace in namespace:tensorflow
93 // The control dependency is for constants in the cond graph, and other ops
94 // that do not depend on the loop variables. This ensures that these ops are
169 // If there are multiple loop variables, each of the control flow ops is
249 } // namespace ops
  /external/tensorflow/tensorflow/contrib/lite/kernels/
concatenation.cc 32 namespace ops { namespace in namespace:tflite
169 } // namespace ops
div.cc 25 namespace ops { namespace in namespace:tflite
128 } // namespace ops
gather.cc 25 namespace ops { namespace in namespace:tflite
130 } // namespace ops
hashtable_lookup.cc 50 namespace ops { namespace in namespace:tflite
154 } // namespace ops
pad.cc 26 namespace ops { namespace in namespace:tflite
182 } // namespace ops
resize_bilinear.cc 24 namespace ops { namespace in namespace:tflite
144 } // namespace ops
space_to_depth.cc 24 namespace ops { namespace in namespace:tflite
145 } // namespace ops
split.cc 26 namespace ops { namespace in namespace:tflite
158 } // namespace ops
sub.cc 25 namespace ops { namespace in namespace:tflite
128 } // namespace ops
transpose.cc 25 namespace ops { namespace in namespace:tflite
158 } // namespace ops
  /external/tensorflow/tensorflow/contrib/lite/models/smartreply/ops/
extract_feature.cc 33 namespace ops { namespace in namespace:tflite
100 // Explicitly set an empty result to make preceding ops run.
117 } // namespace ops
predict_test.cc 27 namespace ops { namespace in namespace:tflite
176 } // namespace ops
  /external/tensorflow/tensorflow/core/graph/
graph_def_builder.cc 99 namespace ops { namespace in namespace:tensorflow
126 } // end namespace ops
graph_def_builder.h 31 // namespace ops {
40 // } // namespace ops
43 // namespace ops {
48 // } // namespace ops
52 // using namespace ::tensorflow::ops; // NOLINT(build/namespaces)
184 namespace ops { namespace in namespace:tensorflow
203 } // namespace ops
  /external/tensorflow/tensorflow/python/framework/
python_op_gen_main.cc 93 // For built-in ops, the Bazel build creates a separate executable
110 OpList ops; local
111 OpRegistry::Global()->Export(false, &ops);
113 ApiDefMap api_def_map(ops);
129 for (const auto& op_def : ops.op()) {
137 PrintEagerPythonOps(ops, api_def_map, op_list, require_shapes,
  /external/wpa_supplicant_8/src/pae/
ieee802_1x_secy_ops.c 30 struct ieee802_1x_kay_ctx *ops; local
37 ops = kay->ctx;
38 if (!ops || !ops->enable_protect_frames) {
44 return ops->enable_protect_frames(ops->ctx, enabled);
50 struct ieee802_1x_kay_ctx *ops; local
57 ops = kay->ctx;
58 if (!ops || !ops->enable_encrypt)
70 struct ieee802_1x_kay_ctx *ops; local
90 struct ieee802_1x_kay_ctx *ops; local
118 struct ieee802_1x_kay_ctx *ops; local
138 struct ieee802_1x_kay_ctx *ops; local
159 struct ieee802_1x_kay_ctx *ops; local
180 struct ieee802_1x_kay_ctx *ops; local
201 struct ieee802_1x_kay_ctx *ops; local
221 struct ieee802_1x_kay_ctx *ops; local
241 struct ieee802_1x_kay_ctx *ops; local
261 struct ieee802_1x_kay_ctx *ops; local
281 struct ieee802_1x_kay_ctx *ops; local
301 struct ieee802_1x_kay_ctx *ops; local
323 struct ieee802_1x_kay_ctx *ops; local
346 struct ieee802_1x_kay_ctx *ops; local
367 struct ieee802_1x_kay_ctx *ops; local
388 struct ieee802_1x_kay_ctx *ops; local
409 struct ieee802_1x_kay_ctx *ops; local
430 struct ieee802_1x_kay_ctx *ops; local
453 struct ieee802_1x_kay_ctx *ops; local
476 struct ieee802_1x_kay_ctx *ops; local
503 struct ieee802_1x_kay_ctx *ops; local
    [all...]
  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/
NotificationContentViewTest.java 109 ArraySet<Integer> ops = new ArraySet<>(); local
110 ops.add(AppOpsManager.OP_ANSWER_PHONE_CALLS);
111 mView.showAppOpsIcons(ops);
113 verify(mockContracted, times(1)).showAppOpsIcons(ops);
114 verify(mockExpanded, times(1)).showAppOpsIcons(ops);
115 verify(mockAmbient, never()).showAppOpsIcons(ops);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
PathOpsActivity.java 57 Path.Op[] ops = Path.Op.values(); local
58 mPaths = new Path[ops.length];
60 mSize = w / (ops.length * 2.0f);
68 for (int i = 0; i < ops.length; i++) {
70 if (!mPaths[i].op(p1, p2, ops[i])) {
71 Log.d("PathOps", ops[i].name() + " failed!");
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/testauth/
TestSyncAdapter.java 61 final ArrayList<ContentProviderOperation> ops = new ArrayList<>(); local
73 ops.add(ContentProviderOperation.newUpdate(RawContacts.CONTENT_URI)
83 ops.add(ContentProviderOperation.newInsert(dataUri)
93 if (ops.isEmpty()) return;
99 Log.v(TestauthConstants.LOG_TAG, "Claiming " + ops.size() + " local raw contacts");
100 for (ContentProviderOperation op : ops) {
105 contentResolver.applyBatch(ContactsContract.AUTHORITY, ops);
  /packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/
LevenshteinDistanceTest.java 46 EditOperation[] ops = distance.getTargetOperations(); local
47 assertEquals(expectedOps.length, ops.length);
48 for (int i = 0; i < ops.length; ++i) {
50 expectedOps[i], ops[i].getType());
52 assertEquals(source[ops[i].getPosition()], target[i]);
54 assertFalse(source[ops[i].getPosition()].equals(target[i]));
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
ContactsContract_StreamItemsTest.java 113 ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>(); local
115 ops.add(ContentProviderOperation.newInsert(RawContacts.CONTENT_URI)
120 ops.add(ContentProviderOperation.newInsert(StreamItems.CONTENT_URI)
129 ContentProviderResult[] results = mResolver.applyBatch(ContactsContract.AUTHORITY, ops);
145 ops.clear();
146 ops.add(ContentProviderOperation.newUpdate(streamItemUri)
155 results = mResolver.applyBatch(ContactsContract.AUTHORITY, ops);
  /external/tensorflow/tensorflow/java/src/test/java/org/tensorflow/
OperationTest.java 85 Set<Operation> ops = new HashSet<>(); local
86 ops.addAll(Arrays.asList(op1, op2, op3, op4));
87 assertEquals(2, ops.size());
88 assertTrue(ops.contains(op1));
89 assertTrue(ops.contains(op2));
90 assertTrue(ops.contains(op3));
91 assertTrue(ops.contains(op4));
122 Set<Output<Integer>> ops = new HashSet<>(); local
123 ops.addAll(Arrays.asList(output, output1, output2));
124 assertEquals(1, ops.size())
    [all...]

Completed in 732 milliseconds

1 2 3 45 6 7 8 91011>>