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

1 2 3 4 5 6 78 91011>>

  /frameworks/ml/nn/runtime/test/generated/vts_models/
squeeze.model.cpp 34 const std::vector<Operation> operations = { local
51 .operations = operations,
squeeze_float_1.model.cpp 34 const std::vector<Operation> operations = { local
51 .operations = operations,
squeeze_float_1_relaxed.model.cpp 34 const std::vector<Operation> operations = { local
51 .operations = operations,
squeeze_quant8_1.model.cpp 34 const std::vector<Operation> operations = { local
51 .operations = operations,
squeeze_relaxed.model.cpp 34 const std::vector<Operation> operations = { local
51 .operations = operations,
sub.model.cpp 43 const std::vector<Operation> operations = { local
60 .operations = operations,
sub_broadcast_float.model.cpp 43 const std::vector<Operation> operations = { local
60 .operations = operations,
sub_broadcast_float_relaxed.model.cpp 43 const std::vector<Operation> operations = { local
60 .operations = operations,
sub_relaxed.model.cpp 43 const std::vector<Operation> operations = { local
60 .operations = operations,
tanh.model.cpp 25 const std::vector<Operation> operations = { local
40 .operations = operations,
tanh_relaxed.model.cpp 25 const std::vector<Operation> operations = { local
40 .operations = operations,
transpose.model.cpp 34 const std::vector<Operation> operations = { local
51 .operations = operations,
transpose_float_1.model.cpp 34 const std::vector<Operation> operations = { local
51 .operations = operations,
transpose_float_1_relaxed.model.cpp 34 const std::vector<Operation> operations = { local
51 .operations = operations,
transpose_quant8_1.model.cpp 34 const std::vector<Operation> operations = { local
51 .operations = operations,
transpose_relaxed.model.cpp 34 const std::vector<Operation> operations = { local
51 .operations = operations,
avg_pool_float_1_relaxed.model.cpp 52 const std::vector<Operation> operations = { local
69 .operations = operations,
avg_pool_float_2.model.cpp 61 const std::vector<Operation> operations = { local
78 .operations = operations,
  /packages/apps/Dialer/java/com/android/dialer/databasepopulator/
BlockedBumberPopulator.java 43 ArrayList<ContentProviderOperation> operations = new ArrayList<>(); local
45 operations.add(
52 context.getContentResolver().applyBatch(BlockedNumberContract.AUTHORITY, operations);
  /frameworks/base/core/java/android/net/
NetworkStats.java 126 private long[] operations; field in class:NetworkStats
155 public long operations; field in class:NetworkStats.Entry
161 public Entry(long rxBytes, long rxPackets, long txBytes, long txPackets, long operations) {
163 operations);
167 long txBytes, long txPackets, long operations) {
169 rxBytes, rxPackets, txBytes, txPackets, operations);
174 long operations) {
186 this.operations = operations;
190 return rxBytes < 0 || rxPackets < 0 || txBytes < 0 || txPackets < 0 || operations < 0
    [all...]
  /hardware/interfaces/neuralnetworks/1.0/vts/functional/
ValidateModel.cpp 273 for (const Operation& operation : model.operations) {
313 for (size_t operation = 0; operation < model.operations.size(); ++operation) {
319 model->operations[operation].type =
330 for (size_t operation = 0; operation < model.operations.size(); ++operation) {
332 for (size_t input = 0; input < model.operations[operation].inputs.size(); ++input) {
337 model->operations[operation].inputs[input] = invalidOperand;
347 for (size_t operation = 0; operation < model.operations.size(); ++operation) {
349 for (size_t output = 0; output < model.operations[operation].outputs.size(); ++output) {
354 model->operations[operation].outputs[output] = invalidOperand;
376 for (Operation& operation : model->operations) {
    [all...]
  /hardware/interfaces/neuralnetworks/1.1/vts/functional/
ValidateModel.cpp 289 for (const Operation& operation : model.operations) {
329 for (size_t operation = 0; operation < model.operations.size(); ++operation) {
335 model->operations[operation].type =
346 for (size_t operation = 0; operation < model.operations.size(); ++operation) {
348 for (size_t input = 0; input < model.operations[operation].inputs.size(); ++input) {
353 model->operations[operation].inputs[input] = invalidOperand;
363 for (size_t operation = 0; operation < model.operations.size(); ++operation) {
365 for (size_t output = 0; output < model.operations[operation].outputs.size(); ++output) {
370 model->operations[operation].outputs[output] = invalidOperand;
392 for (Operation& operation : model->operations) {
    [all...]
  /cts/tests/tvprovider/src/android/tvprovider/cts/
TvProviderPerfTest.java 85 final ArrayList<ContentProviderOperation> operations = new ArrayList<>(); local
90 operations.clear();
97 operations.add(
102 mContentResolver.applyBatch(TvContract.AUTHORITY, operations);
121 operations.clear();
125 operations.add(
131 mContentResolver.applyBatch(TvContract.AUTHORITY, operations);
199 final ArrayList<ContentProviderOperation> operations = new ArrayList<>(); local
204 operations.clear();
211 operations.add
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/contacts/
ContactsContract_PinnedPositionsTest.java 83 final ArrayList<ContentProviderOperation> operations = local
85 operations.add(newPinningOperation(i1.mContactId, 1, true));
86 operations.add(newPinningOperation(i3.mContactId, 3, true));
87 operations.add(newPinningOperation(i4.mContactId, 2, false));
88 applyBatch(mResolver, operations);
105 operations.clear();
108 operations.add(newPinningOperation(i3.mContactId, unpinned, false));
109 applyBatch(mResolver, operations);
147 final ArrayList<ContentProviderOperation> operations = local
150 operations.add(newPinningOperation(i1.mContactId, 1, true))
295 final ArrayList<ContentProviderOperation> operations = local
    [all...]
  /frameworks/base/tools/preload/
LoadedClass.java 30 /** Load operations. */
33 /** Static initialization operations. */
83 /** Calculates the median duration for a list of operations. */
84 private static int calculateMedian(List<Operation> operations) {
85 int size = operations.size();
92 times[i] = operations.get(i).exclusiveTimeMicros();

Completed in 617 milliseconds

1 2 3 4 5 6 78 91011>>