Searched defs:op (Results 1 - 25 of 1006) sorted by relevance

1234567891011>>

/external/elfutils/libdw/
H A Ddwarf_getlocation_die.c1 /* Return DIE associated with a location expression op.
37 dwarf_getlocation_die (Dwarf_Attribute *attr, const Dwarf_Op *op, argument
44 switch (op->atom)
48 dieoff = op->number;
57 dieoff = attr->cu->start + op->number;
62 dieoff = attr->cu->start + op->number2;
H A Ddwarf_getlocation_attr.c1 /* Return DWARF attribute associated with a location expression op.
56 dwarf_getlocation_attr (Dwarf_Attribute *attr, const Dwarf_Op *op, Dwarf_Attribute *result) argument
61 switch (op->atom)
66 result->valp = (unsigned char *) (uintptr_t) op->number2;
73 result->valp = (unsigned char *) (uintptr_t) op->number2;
80 result->valp = (unsigned char *) (uintptr_t) op->number2;
89 if (INTUSE(dwarf_getlocation_die) (attr, op, &die) != 0)
102 if (INTUSE(dwarf_getlocation_die) (attr, op, &die) != 0)
H A Ddwarf_getlocation_implicit_pointer.c52 dwarf_getlocation_implicit_pointer (Dwarf_Attribute *attr, const Dwarf_Op *op, argument
58 if (unlikely (op->atom != DW_OP_GNU_implicit_pointer))
65 if (__libdw_offdie (attr->cu->dbg, op->number, &die,
/external/toybox/toys/other/
H A Dflock.c28 int fd = xstrtol(*toys.optargs, NULL, 10), op; local
30 if (toys.optflags & FLAG_u) op = LOCK_UN;
31 else op = (toys.optflags & FLAG_s) ? LOCK_SH : LOCK_EX;
33 if (toys.optflags & FLAG_n) op |= LOCK_NB;
35 if (flock(fd, op)) {
36 if ((op & LOCK_NB) && errno == EAGAIN) toys.exitval = 1;
/external/clang/test/CodeGen/
H A D2003-08-18-StructAsValue.c5 int op; member in struct:__anon1872
/external/libpcap/
H A Dbpf_image.c55 const char *fmt, *op; local
63 op = "unimp";
69 op = "ret";
74 op = "ret";
79 op = "ld";
84 op = "ldh";
89 op = "ldb";
94 op = "ld";
99 op = "ld";
104 op
[all...]
/external/parameter-framework/upstream/utility/
H A DUtility.h42 /** Join all elements in [first, last[ with op.
48 * let op = [](auto l, auto r){ return l + "|" + r; }
50 * then join(first, last, op) == "1|2|3"
54 T join(InputIt first, InputIt last, BinaryOperation op, T empty = T{}) argument
61 return std::accumulate(first, last, init, op);
/external/skia/src/gpu/
H A DGrStencil.cpp236 SkRegion::Op op,
244 switch (op) {
274 switch (op) {
392 SkFAIL("Unknown set op");
235 GetClipPasses( SkRegion::Op op, bool canBeDirect, unsigned int stencilClipMask, bool invertedFill, int* numPasses, GrStencilSettings settings[kMaxStencilClipPasses]) argument
/external/v8/src/compiler/
H A Doperator-properties.h20 static bool HasContextInput(const Operator* op);
21 static int GetContextInputCount(const Operator* op) { argument
22 return HasContextInput(op) ? 1 : 0;
24 static int GetFrameStateInputCount(const Operator* op);
26 static int GetTotalInputCount(const Operator* op);
28 static bool IsBasicBlockBegin(const Operator* op);
H A Doperator-properties.cc16 bool OperatorProperties::HasContextInput(const Operator* op) { argument
17 IrOpcode::Value opcode = static_cast<IrOpcode::Value>(op->opcode());
23 int OperatorProperties::GetFrameStateInputCount(const Operator* op) { argument
24 switch (op->opcode()) {
28 const CallRuntimeParameters& p = CallRuntimeParametersOf(op);
117 int OperatorProperties::GetTotalInputCount(const Operator* op) { argument
118 return op->ValueInputCount() + GetContextInputCount(op) +
119 GetFrameStateInputCount(op) + op
125 IsBasicBlockBegin(const Operator* op) argument
[all...]
/external/libnl/lib/route/
H A Dclass_api.c39 struct rtnl_class_ops *o, **op; local
44 for (op = &class_ops_list; (o = *op) != NULL; op = &o->co_next)
49 *op = cops;
60 struct rtnl_class_ops *o, **op; local
62 for (op = &class_ops_list; (o = *op) != NULL; op = &o->co_next)
69 *op
[all...]
H A Dcls_api.c40 struct rtnl_cls_ops *o, **op; local
45 for (op = &cls_ops_list; (o = *op) != NULL; op = &o->co_next)
50 *op = cops;
61 struct rtnl_cls_ops *o, **op; local
63 for (op = &cls_ops_list; (o = *op) != NULL; op = &o->co_next)
70 *op
[all...]
H A Dqdisc_api.c42 struct rtnl_qdisc_ops *o, **op; local
47 for (op = &qdisc_ops_list; (o = *op) != NULL; op = &o->qo_next)
52 *op = qops;
63 struct rtnl_qdisc_ops *o, **op; local
65 for (op = &qdisc_ops_list; (o = *op) != NULL; op = &o->qo_next)
72 *op
[all...]
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/src/
H A Dsm4_analyze.cpp107 sm4_op& op = *program.insns[insn_num]->ops[0]; local
108 if(op.file == SM4_FILE_LABEL && op.has_simple_index())
110 unsigned idx = (unsigned)op.indices[0].disp;
/external/mesa3d/src/glsl/
H A Dast_expr.cpp27 ast_expression::operator_string(enum ast_operators op) argument
75 assert((unsigned int)op < sizeof(operators) / sizeof(operators[0]));
77 return operators[op];
/external/mesa3d/src/mesa/drivers/dri/i915/
H A Dintel_state.c92 intel_translate_stencil_op(GLenum op) argument
94 switch (op) {
/external/mesa3d/src/mesa/drivers/dri/i965/
H A Dintel_state.c92 intel_translate_stencil_op(GLenum op) argument
94 switch (op) {
/external/mesa3d/src/mesa/drivers/dri/intel/
H A Dintel_state.c92 intel_translate_stencil_op(GLenum op) argument
94 switch (op) {
/external/opencv3/samples/cpp/tutorial_code/features2D/AKAZE_tracking/
H A Dstats.h17 Stats& operator+=(const Stats& op) { argument
18 matches += op.matches;
19 inliers += op.inliers;
20 ratio += op.ratio;
21 keypoints += op.keypoints;
/external/parameter-framework/asio/include/asio/detail/impl/
H A Dtask_io_service.hpp38 typedef completion_handler<Handler> op; typedef
39 typename op::ptr p = { asio::detail::addressof(handler),
41 sizeof(op), handler), 0 };
42 p.p = new (p.v) op(handler);
58 typedef completion_handler<Handler> op; typedef
59 typename op::ptr p = { asio::detail::addressof(handler),
61 sizeof(op), handler), 0 };
62 p.p = new (p.v) op(handler);
/external/parameter-framework/asio-1.10.6/include/asio/detail/impl/
H A Dtask_io_service.hpp38 typedef completion_handler<Handler> op; typedef
39 typename op::ptr p = { asio::detail::addressof(handler),
41 sizeof(op), handler), 0 };
42 p.p = new (p.v) op(handler);
58 typedef completion_handler<Handler> op; typedef
59 typename op::ptr p = { asio::detail::addressof(handler),
61 sizeof(op), handler), 0 };
62 p.p = new (p.v) op(handler);
/external/v8/test/cctest/compiler/
H A Dtest-operator.cc71 static v8::base::SmartArrayPointer<const char> OperatorToString(Operator* op) { argument
73 os << *op; local
244 Operator1<double> op(33, NONE, "Scurvy", 0, 0, 0, 0, 0, 0, values[i]);
245 CHECK_EQ(values[i], OpParameter<double>(&op));
257 Operator1<float> op(33, NONE, "Scurvy", 0, 0, 0, 0, 0, 0, values[i]);
258 CHECK_EQ(values[i], OpParameter<float>(&op));
267 Operator1<int> op(33, NONE, "Scurvy", 0, 0, 0, 0, 0, 0, values[i]);
268 CHECK_EQ(values[i], OpParameter<int>(&op));
274 Operator op(29, NONE, "Flashy", 11, 22, 33, 44, 55, 66);
275 CHECK_EQ(11, op
[all...]
/external/valgrind/memcheck/tests/vbit-test/
H A Dirops.c32 #define DEFOP(op,ukind) op, #op, ukind
103 // is 64-bit (not 128-bit). So we cannot test this op standalone.
231 // ppc requires this op to show up in a specific context. So it cannot be
1091 get_irop(IROp op) argument
1097 if (p->op == op) {
1100 switch (op) {
1173 switch (op) {
[all...]
/external/valgrind/none/tests/mips64/
H A Dcvm_lx_ins.c93 cvm_op op; local
94 for (op = lhux; op <= lbx; op++) {
95 switch(op) {
H A Dfpu_arithmetic.c7 int arithmeticOperations(flt_art_op_t op) argument
18 switch(op) {
21 printf("%s %f %f\n", flt_art_op_names[op], fd_f, fs_f[i]);
25 printf("%s %lf %lf\n", flt_art_op_names[op], fd_d, fs_d[i]);
30 flt_art_op_names[op], fd_f, fs_f[i], ft_f[i]);
35 flt_art_op_names[op], fd_d, fs_d[i], ft_d[i]);
40 flt_art_op_names[op], roundf(fd_f), fs_f[i], ft_f[i]);
45 flt_art_op_names[op], round(fd_d), fs_d[i], ft_d[i]);
50 flt_art_op_names[op], roundf(fd_f), fs_f[i], ft_f[i]);
55 flt_art_op_names[op], roun
163 flt_art_op_t op; local
[all...]

Completed in 792 milliseconds

1234567891011>>