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

1 2 3 4 5 6 78 91011>>

  /external/fio/
libfio.c 263 struct ioengine_ops *ops = td->io_ops; local
265 if (ops && ops->terminate)
266 ops->terminate(td);
workqueue.h 52 struct workqueue_ops ops; member in struct:workqueue
64 int workqueue_init(struct thread_data *td, struct workqueue *wq, struct workqueue_ops *ops, unsigned int max_workers, struct sk_out *sk_out);
74 if (!wq->ops.pre_sleep_flush_fn)
77 return wq->ops.pre_sleep_flush_fn(sw);
84 if (wq->ops.pre_sleep_fn)
85 wq->ops.pre_sleep_fn(sw);
92 if (!wq->ops.init_worker_fn)
95 return wq->ops.init_worker_fn(sw);
104 if (!wq->ops.exit_worker_fn)
110 wq->ops.exit_worker_fn(sw, sum_cnt)
    [all...]
  /external/gemmlowp/test/
benchmark.cc 134 double ops = 0; local
136 ops += 2.0 * gemm.rows * gemm.depth * gemm.cols;
138 return 1e-9 * ops / time_per_iter;
benchmark_meta_gemm.cc 79 const double ops = static_cast<double>(n) * static_cast<double>(m) * local
86 repetitions = MIN_OPS / ops + 20;
105 double ops = 0.0; local
107 ops += run_gemm(shape.n, shape.m, shape.k, shape.working_set().lhs,
110 return ops;
162 double ops = 0.0; local
169 ops += run_gemms(shapes);
181 double ops = 0.0; local
191 ops += run_gemm(shape->n, shape->m, shape->k, shape->working_set().lhs,
  /external/icu/icu4c/source/tools/ctestfw/
uperf.cpp 354 long ops; local
372 ops = testFunction->getOperationsPerIteration();
373 if (ops < 1) {
438 fprintf(stdout, "= %s end: %f loops: %i operations: %li \n", name, t, (int)loops, ops);
440 fprintf(stdout, "= %s end: %f loops: %i operations: %li events: %li\n", name, t, (int)loops, ops, events);
444 fprintf(stdout,"= %s end %f %i %li\n", name, t, (int)loops, ops);
446 fprintf(stdout,"= %s end %f %i %li %li\n", name, t, (int)loops, ops, events);
452 if (loops == 0 || ops == 0) {
457 name, avg_t, (int)loops, (avg_t*1E9)/(loops*ops));
459 name, min_t, (int)loops, (min_t*1E9)/(loops*ops));
    [all...]
  /external/iproute2/include/
bpf_util.h 55 void (*cbpf_cb)(void *nl, const struct sock_filter *ops, int ops_len);
65 struct sock_filter *ops; member in struct:bpf_cfg_in
68 /* ALU ops on registers, bpf_add|sub|...: dst_reg += src_reg */
86 /* ALU ops on immediates, bpf_add|sub|...: dst_reg += imm32 */
248 const struct bpf_cfg_ops *ops, void *nl);
  /external/iptables/iptables/
ip6tables-restore.c 198 const struct xtc_ops *ops = &ip6tc_ops; local
282 ret = ops->commit(handle);
283 ops->free(handle);
318 ops->free(handle);
355 if (ops->builtin(chain, handle) <= 0) {
356 if (noflush && ops->is_chain(chain, handle)) {
358 if (!ops->flush_entries(chain, handle))
365 if (!ops->create_chain(chain, handle))
401 if (!ops->set_policy(chain, policy, &count,
407 ops->strerror(errno))
    [all...]
iptables-restore.c 197 const struct xtc_ops *ops = &iptc_ops; local
281 ret = ops->commit(handle);
282 ops->free(handle);
317 ops->free(handle);
354 if (ops->builtin(chain, handle) <= 0) {
355 if (noflush && ops->is_chain(chain, handle)) {
357 if (!ops->flush_entries(chain, handle))
364 if (!ops->create_chain(chain, handle))
400 if (!ops->set_policy(chain, policy, &count,
406 ops->strerror(errno))
    [all...]
xtables-restore.c 212 const struct xtc_ops *ops = &xtc_ops; local
331 ops->strerror(errno));
  /external/kmod/libkmod/
libkmod-file.c 58 const struct file_ops *ops; member in struct:kmod_file
239 const struct file_ops ops; member in struct:comp_type
301 for (itr = comp_types; itr->ops.load != NULL; itr++) {
325 for (itr = comp_types; itr->ops.load != NULL; itr++) {
329 if (itr->ops.load != NULL)
330 file->ops = &itr->ops;
333 if (file->ops == NULL)
334 file->ops = &reg_ops;
336 err = file->ops->load(file)
    [all...]
  /external/libnl/lib/genl/
family.c 48 struct genl_family_op *ops, *tmp; local
54 nl_list_for_each_entry_safe(ops, tmp, &family->gf_ops, o_list) {
55 nl_list_del(&ops->o_list);
56 free(ops);
70 struct genl_family_op *ops; local
74 nl_list_for_each_entry(ops, &src->gf_ops, o_list) {
75 err = genl_family_add_op(dst, ops->o_id, ops->o_flags);
  /external/libnl/lib/route/
act.c 71 struct rtnl_tc_ops *ops; local
82 ops = rtnl_tc_get_ops(tc);
83 if (ops && (ops->to_msg_fill || ops->to_msg_fill_raw)) {
87 if (ops->to_msg_fill) {
91 if ((err = ops->to_msg_fill(tc, data, msg)) < 0)
95 } else if ((err = ops->to_msg_fill_raw(tc, data, msg)) < 0)
388 struct rtnl_tc_ops *ops; local
433 ops = rtnl_tc_get_ops(tc)
    [all...]
  /external/libnl/lib/route/cls/
ematch.c 38 * @arg ops Module operations.
45 int rtnl_ematch_register(struct rtnl_ematch_ops *ops)
47 if (rtnl_ematch_lookup_ops(ops->eo_kind))
50 NL_DBG(1, "ematch module \"%s\" registered\n", ops->eo_name);
52 nl_list_add_tail(&ops->eo_list, &ematch_ops_list);
67 struct rtnl_ematch_ops *ops; local
69 nl_list_for_each_entry(ops, &ematch_ops_list, eo_list)
70 if (ops->eo_kind == kind)
71 return ops;
86 struct rtnl_ematch_ops *ops; local
189 struct rtnl_ematch_ops *ops; local
204 struct rtnl_ematch_ops *ops; local
389 struct rtnl_ematch_ops *ops; local
    [all...]
  /external/ltp/testcases/realtime/func/matrix_mult/
matrix_mult.c 61 static int ops = DEF_OPS; variable
91 ops = atoi(v);
140 for (i = 0; i < ops; i++)
347 printf("Calculations per iteration: %d\n", ops);
  /external/mesa3d/src/gallium/auxiliary/pipebuffer/
pb_buffer_fenced.c 68 struct pb_fence_ops *ops; member in struct:fenced_manager
200 struct pb_fence_ops *ops = fenced_mgr->ops; local
227 signaled = ops->fence_signalled(ops, fenced_buf->fence, 0);
297 struct pb_fence_ops *ops = fenced_mgr->ops; local
302 ops->fence_reference(ops, &fenced_buf->fence, NULL);
334 struct pb_fence_ops *ops = fenced_mgr->ops local
395 struct pb_fence_ops *ops = fenced_mgr->ops; local
669 struct pb_fence_ops *ops = fenced_mgr->ops; local
817 struct pb_fence_ops *ops = fenced_mgr->ops; local
    [all...]
  /external/mesa3d/src/gallium/winsys/svga/drm/
pb_buffer_simple_fenced.c 68 struct pb_fence_ops *ops; member in struct:fenced_manager
164 struct pb_fence_ops *ops = fenced_mgr->ops; local
191 signaled = ops->fence_signalled(ops, fenced_buf->fence, 0);
260 struct pb_fence_ops *ops = fenced_mgr->ops; local
265 ops->fence_reference(ops, &fenced_buf->fence, NULL);
297 struct pb_fence_ops *ops = fenced_mgr->ops local
364 struct pb_fence_ops *ops = fenced_mgr->ops; local
525 struct pb_fence_ops *ops = fenced_mgr->ops; local
650 struct pb_fence_ops *ops = fenced_mgr->ops; local
    [all...]
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowContentProviderClientTest.java 114 final ArrayList<ContentProviderOperation> ops = new ArrayList<>(); local
115 client.applyBatch(ops);
116 verify(provider).applyBatch(ops);
  /external/skia/src/core/
SkRecordDraw.cpp 22 // Draw only ops that affect pixels in the canvas's current clip.
29 SkTDArray<int> ops; local
30 bbh->search(query, &ops);
33 for (int i = 0; i < ops.count(); i++) {
40 record.visit(ops[i], draw);
43 // Draw all ops.
147 // The interesting part here is how to calculate bounds for ops which don't
153 // bounds of Draw* ops that they might have an effect on. For any given
155 // non-drawing ("control") ops inside are exactly the union of the bounds of
156 // the drawing ops inside that block
    [all...]
  /external/skqp/src/core/
SkRecordDraw.cpp 22 // Draw only ops that affect pixels in the canvas's current clip.
29 SkTDArray<int> ops; local
30 bbh->search(query, &ops);
33 for (int i = 0; i < ops.count(); i++) {
40 record.visit(ops[i], draw);
43 // Draw all ops.
147 // The interesting part here is how to calculate bounds for ops which don't
153 // bounds of Draw* ops that they might have an effect on. For any given
155 // non-drawing ("control") ops inside are exactly the union of the bounds of
156 // the drawing ops inside that block
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/Blackfin/
BlackfinISelLowering.cpp 372 SDValue Ops[] = { Chain, Callee, InFlag };
373 Chain = DAG.getNode(BFISD::CALL, dl, NodeTys, Ops,
454 SDValue ops[2] = { SDValue(Sum, 0), SDValue(CarryOut, 0) }; local
455 return DAG.getMergeValues(ops, 2, dl);
  /external/swiftshader/third_party/LLVM/lib/Target/PTX/
PTXInstrInfo.cpp 323 SDValue ops[] = { Op1, predReg, predOp }; local
324 return DAG->getMachineNode(Opcode, dl, VT, ops, array_lengthof(ops));
332 SDValue ops[] = { Op1, Op2, predReg, predOp }; local
333 return DAG->getMachineNode(Opcode, dl, VT, ops, array_lengthof(ops));
  /external/tensorflow/tensorflow/cc/gradients/
array_grad.cc 18 #include "tensorflow/cc/ops/array_ops_internal.h"
19 #include "tensorflow/cc/ops/standard_ops.h"
26 namespace ops { namespace in namespace:tensorflow
369 grad_outputs->push_back(tensorflow::ops::internal::MirrorPadGrad(
389 } // namespace ops
  /external/tensorflow/tensorflow/contrib/graph_editor/
subgraph.py 30 from tensorflow.python.framework import ops as tf_ops
86 * and the operations in between, accessible via the "ops" property.
177 """Create a subgraph containing the given ops and the "passthrough" tensors.
337 """Remove unused ops in place.
340 control_inputs: if True, control inputs are used to detect used ops.
344 ops = select.get_walks_union_ops(
349 self._ops = [op for op in self._ops if op in ops]
352 """Remove unused ops.
355 control_inputs: if True, control inputs are used to detect used ops.
478 print_list("ops", self._ops, op_name
489 def ops(self): member in class:SubGraphView
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/kernels/
activations.cc 33 namespace ops { namespace in namespace:tflite
385 } // namespace ops
add.cc 25 namespace ops { namespace in namespace:tflite
215 } // namespace ops

Completed in 750 milliseconds

1 2 3 4 5 6 78 91011>>