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

1 2 3 4 5 67 8 91011>>

  /external/tensorflow/tensorflow/contrib/lite/kernels/
mean.cc 25 namespace ops { namespace in namespace:tflite
232 } // namespace ops
mul.cc 25 namespace ops { namespace in namespace:tflite
199 } // namespace ops
space_to_batch_nd.cc 26 namespace ops { namespace in namespace:tflite
185 } // namespace ops
strided_slice.cc 26 namespace ops { namespace in namespace:tflite
258 } // namespace ops
svdf.cc 31 namespace ops { namespace in namespace:tflite
221 } // namespace ops
topk_v2.cc 23 namespace ops { namespace in namespace:tflite
231 } // namespace ops
unidirectional_sequence_rnn.cc 30 namespace ops { namespace in namespace:tflite
167 } // namespace ops
  /external/tensorflow/tensorflow/contrib/lite/models/smartreply/ops/
predict.cc 37 namespace ops { namespace in namespace:tflite
173 } // namespace ops
  /external/tensorflow/tensorflow/contrib/lite/toco/tflite/
import.cc 101 auto ops = (*input_model.subgraphs())[0]->operators(); local
103 if (!ops) return;
104 for (const auto* input_op : *ops) {
  /external/tensorflow/tensorflow/core/kernels/
quantized_instance_norm_test.cc 21 #include "tensorflow/cc/ops/array_ops.h"
25 namespace ops { namespace in namespace:tensorflow
173 } // namespace ops
177 TEST(QuantizedInstanceNormTest, t) { tensorflow::ops::t(); }
  /external/tensorflow/tensorflow/python/grappler/
cost_analyzer.cc 124 void CostAnalyzer::SortOpsByTime(std::map<string, OpPerfSummary> ops) {
125 for (const auto& op : ops) {
137 std::map<string, OpPerfSummary> ops; local
140 ops[op_name].count++;
141 ops[op_name].time += op_perf.compute_cost();
142 ops[op_name].compute_time += op_perf.compute_time();
143 ops[op_name].memory_time += op_perf.memory_time();
144 ops[op_name].time_upper += op_perf.compute_time() + op_perf.memory_time();
145 ops[op_name].time_lower +=
147 ops[op_name].name = op_name
    [all...]
  /external/tensorflow/tensorflow/tools/graph_transforms/
insert_logging.cc 30 // Clears the device field of all ops in the graph.
34 std::unordered_set<string> ops; local
39 ops.insert(op);
101 const bool op_matches = (ops.count(node.op()) > 0);
108 // If we're not looking for ops, or we found the right op, and if we're not
  /hardware/qcom/audio/post_proc/
bundle.h 82 effect_ops_t ops; member in struct:effect_context_s
  /packages/apps/Messaging/tests/src/com/android/messaging/util/
ContactUtilTest.java 70 final ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>(); local
72 ops.add(ContentProviderOperation.newInsert(ContactsContract.RawContacts.CONTENT_URI)
77 ops.add(ContentProviderOperation.newInsert(ContactsContract.Data.CONTENT_URI)
85 ops.add(ContentProviderOperation.newInsert(ContactsContract.Data.CONTENT_URI)
96 ops.add(ContentProviderOperation.newInsert(ContactsContract.Data.CONTENT_URI)
106 mContext.getContentResolver().applyBatch(ContactsContract.AUTHORITY, ops);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
LevenshteinSuggestionFormatter.java 87 LevenshteinDistance.EditOperation[] ops = table.getTargetOperations(); local
89 if (ops[i].getType() == LevenshteinDistance.EDIT_UNCHANGED) {
90 result[i] = ops[i].getPosition();
  /packages/apps/TV/src/com/android/tv/data/epg/
EpgFetchHelper.java 84 ArrayList<ContentProviderOperation> ops = new ArrayList<>(); local
101 ops.add(
111 ops.add(
128 ops.add(
134 if (ops.size() > BATCH_OPERATION_COUNT || newProgramsIndex >= fetchedProgramsCount) {
137 int size = ops.size();
140 Log.d(TAG, "Operation(" + i + "): " + ops.get(i));
143 context.getContentResolver().applyBatch(TvContract.AUTHORITY, ops);
149 ops.clear();
  /external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
EABDbUtil.java 192 Context context, ArrayList<ContentProviderOperation> ops, String displayName,
195 ops.add(ContentProviderOperation
230 ArrayList<ContentProviderOperation> ops, String contactId) {
255 ops.add(ContentProviderOperation
263 ops.add(ContentProviderOperation
300 ArrayList<ContentProviderOperation> ops, String rawContactId, String dataId) {
313 ops.add(ContentProviderOperation.newDelete(EABContract.EABColumns.CONTENT_URI)
353 ArrayList<ContentProviderOperation> ops, String phoneName,
361 ops.add(ContentProviderOperation
367 private static void exceuteDB(Context context, ArrayList<ContentProviderOperation> ops) {
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
AdapterHelper.java 80 AdapterHelper addUpdateOp(UpdateOp... ops) {
81 Collections.addAll(mPendingUpdates, ops);
127 // MOVE ops are pre-processed so at this point, we know that item is still in the adapter.
145 // have any effect in pre-layout since their add ops are already deferred to
243 // TODO Since move ops are pushed to end, we should not need this anymore
323 throw new IllegalArgumentException("only remove and update ops can be dispatched"
746 void recycleUpdateOpsAndClearList(List<UpdateOp> ops) {
747 final int count = ops.size();
749 recycleUpdateOp(ops.get(i));
751 ops.clear()
    [all...]
  /frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
AdapterHelper.java 81 AdapterHelper addUpdateOp(UpdateOp... ops) {
82 Collections.addAll(mPendingUpdates, ops);
128 // MOVE ops are pre-processed so at this point, we know that item is still in the adapter.
146 // have any effect in pre-layout since their add ops are already deferred to
244 // TODO Since move ops are pushed to end, we should not need this anymore
324 throw new IllegalArgumentException("only remove and update ops can be dispatched"
747 void recycleUpdateOpsAndClearList(List<UpdateOp> ops) {
748 final int count = ops.size();
750 recycleUpdateOp(ops.get(i));
752 ops.clear()
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
SelectedConversationsActionMenu.java 220 final List<FolderOperation> ops = Lists.newArrayListWithCapacity(1); local
222 ops.add(new FolderOperation(moveToInbox, true));
223 mUpdater.assignFolder(ops, mCheckedSet.values(), true,
  /art/test/923-monitors/src/art/
Test923.java 182 int ops = 2 * (N-1); local
183 for (int i = 0; i < ops; i++) {
  /cts/hostsidetests/incident/src/com/android/server/cts/
SettingsIncidentTest.java 78 final List<SettingsOperationProto> ops = invoke(settings, "getHistoricalOperationsList"); local
79 for (SettingsOperationProto op : ops) {
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
ContactsContract_StatusUpdatesTest.java 47 ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>(); local
49 ops.add(ContentProviderOperation.newInsert(RawContacts.CONTENT_URI)
54 ops.add(ContentProviderOperation.newInsert(Data.CONTENT_URI)
61 ContentProviderResult[] results = mResolver.applyBatch(ContactsContract.AUTHORITY, ops);
103 ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>(); local
104 ops.add(ContentProviderOperation.newInsert(StatusUpdates.CONTENT_URI)
113 ContentProviderResult[] results = mResolver.applyBatch(ContactsContract.AUTHORITY, ops);
119 ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>(); local
120 ops.add(ContentProviderOperation.newAssertQuery(uri)
124 mResolver.applyBatch(ContactsContract.AUTHORITY, ops);
128 ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>(); local
138 ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>(); local
    [all...]
  /device/google/marlin/camera/QCamera2/stack/mm-jpeg-interface/test/
mm_jpegdec_test.c 90 mm_jpegdec_ops_t ops; member in struct:__anon2564
399 jpeg_obj.handle = jpegdec_open(&jpeg_obj.ops);
405 rc = jpeg_obj.ops.create_session(jpeg_obj.handle, &jpeg_obj.params,
421 rc = jpeg_obj.ops.start_job(&jpeg_obj.job, &jpeg_obj.job_id[i]);
430 jpeg_obj.ops.abort_job(jpeg_obj.job_id[0]);
440 jpeg_obj.ops.destroy_session(jpeg_obj.job.decode_job.session_id);
442 jpeg_obj.ops.close(jpeg_obj.handle);
  /external/e2fsprogs/lib/ext2fs/
gen_bitmap64.c 97 struct ext2_bitmap_ops *ops; local
106 ops = &ext2fs_blkmap64_bitarray;
109 ops = &ext2fs_blkmap64_rbtree;
114 ops = &ext2fs_blkmap64_bitarray;
116 ops = &ext2fs_blkmap64_rbtree;
143 bitmap->bitmap_ops = ops;

Completed in 3489 milliseconds

1 2 3 4 5 67 8 91011>>