/external/elfutils/libdw/ |
H A D | dwarf_getlocation_die.c | 1 /* 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 D | dwarf_getlocation_attr.c | 1 /* 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 D | dwarf_getlocation_implicit_pointer.c | 52 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 D | flock.c | 28 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 D | 2003-08-18-StructAsValue.c | 5 int op; member in struct:__anon2041
|
/external/libpcap/ |
H A D | bpf_image.c | 55 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 D | Utility.h | 42 /** 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 D | GrStencil.cpp | 236 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 D | operator-properties.h | 20 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 D | operator-properties.cc | 16 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()) { 29 const CallRuntimeParameters& p = CallRuntimeParametersOf(op); 115 int OperatorProperties::GetTotalInputCount(const Operator* op) { argument 116 return op->ValueInputCount() + GetContextInputCount(op) + 117 GetFrameStateInputCount(op) + op 123 IsBasicBlockBegin(const Operator* op) argument [all...] |
/external/libnl/lib/route/ |
H A D | class_api.c | 39 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 D | cls_api.c | 40 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 D | qdisc_api.c | 42 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 D | sm4_analyze.cpp | 107 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 D | ast_expr.cpp | 27 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 D | intel_state.c | 92 intel_translate_stencil_op(GLenum op) argument 94 switch (op) {
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
H A D | intel_state.c | 92 intel_translate_stencil_op(GLenum op) argument 94 switch (op) {
|
/external/mesa3d/src/mesa/drivers/dri/intel/ |
H A D | intel_state.c | 92 intel_translate_stencil_op(GLenum op) argument 94 switch (op) {
|
/external/opencv3/samples/cpp/tutorial_code/features2D/AKAZE_tracking/ |
H A D | stats.h | 17 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 D | task_io_service.hpp | 38 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 D | task_io_service.hpp | 38 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 D | test-operator.cc | 71 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 D | irops.c | 32 #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 D | cvm_lx_ins.c | 93 cvm_op op; local 94 for (op = lhux; op <= lbx; op++) { 95 switch(op) {
|
H A D | fpu_arithmetic.c | 7 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...] |