HomeSort by relevance Sort by last modified time
    Searched defs:op (Results 1 - 25 of 1760) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/toybox/toys/other/
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/
2003-08-18-StructAsValue.c 5 int op; member in struct:__anon7143
  /system/update_engine/payload_generator/
annotated_operation.h 36 InstallOperation op; member in struct:chromeos_update_engine::AnnotatedOperation
  /external/libpcap/
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 = "ldh"
    [all...]
  /external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/src/
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/google-breakpad/src/third_party/libdisasm/
ia32_operand.c 16 static void apply_seg( x86_op_t *op, unsigned int prefixes ) {
22 op->flags |= op_cs_seg; break;
24 op->flags |= op_ss_seg; break;
26 op->flags |= op_ds_seg; break;
28 op->flags |= op_es_seg; break;
30 op->flags |= op_fs_seg; break;
32 op->flags |= op_gs_seg; break;
39 x86_op_t *op, x86_insn_t *insn,
68 size = ia32_modrm_decode( buf, buf_len, op, insn,
72 size = ia32_modrm_decode( buf, buf_len, op, insn,
384 x86_op_t *op; local
    [all...]
x86_operand_list.c 5 static void x86_oplist_append( x86_insn_t *insn, x86_oplist_t *op ) {
21 insn->operands = op;
31 list->next = op;
37 x86_oplist_t *op; local
42 op = calloc( sizeof(x86_oplist_t), 1 );
43 op->op.insn = insn;
44 x86_oplist_append( insn, op );
45 return( &(op->op) );
49 x86_oplist_t *op, *list; local
    [all...]
  /external/liblzf/
lzf_d.c 60 u8 *op = (u8 *)out_data; local
62 u8 *const out_end = op + out_len;
72 if (op + ctrl > out_end)
87 lzf_movsb (op, ip, ctrl);
91 case 32: *op++ = *ip++; case 31: *op++ = *ip++; case 30: *op++ = *ip++; case 29: *op++ = *ip++;
92 case 28: *op++ = *ip++; case 27: *op++ = *ip++; case 26: *op++ = *ip++; case 25: *op++ = *ip++
    [all...]
  /external/libnl/lib/route/
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 = cops->co_next
    [all...]
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 = cops->co_next
    [all...]
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 = qops->qo_next
    [all...]
  /external/mesa3d/src/glsl/
hir_field_selection.cpp 37 ir_rvalue *op; local
39 op = expr->subexpressions[0]->hir(instructions, state);
48 if (op->type->is_error()) {
50 } else if (op->type->is_vector()) {
51 ir_swizzle *swiz = ir_swizzle::create(op,
53 op->type->vector_elements);
64 } else if (op->type->base_type == GLSL_TYPE_STRUCT) {
65 result = new(ctx) ir_dereference_record(op,
84 if (op->type->is_array() && strcmp(method, "length") == 0) {
88 if (op->type->array_size() == 0
    [all...]
  /external/parameter-framework/asio-1.10.6/include/asio/detail/impl/
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/
test-operator.cc 71 static v8::base::SmartArrayPointer<const char> OperatorToString(Operator* op) {
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.ValueInputCount())
    [all...]
  /external/valgrind/none/tests/mips64/
cvm_lx_ins.c 93 cvm_op op; local
94 for (op = lhux; op <= lbx; op++) {
95 switch(op) {
fpu_arithmetic.c 7 int arithmeticOperations(flt_art_op_t op)
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], round(fd_d), fs_d[i], ft_d[i])
163 flt_art_op_t op; local
    [all...]
  /frameworks/compile/mclinker/lib/Script/
Operator.cpp 58 static NullaryOp<Operator::SIZEOF_HEADERS> op; local
59 return op;
64 static NullaryOp<Operator::MAXPAGESIZE> op; local
65 return op;
70 static NullaryOp<Operator::COMMONPAGESIZE> op; local
71 return op;
77 static UnaryOp<Operator::UNARY_PLUS> op; local
78 return op;
83 static UnaryOp<Operator::UNARY_MINUS> op; local
84 return op;
89 static UnaryOp<Operator::LOGICAL_NOT> op; local
95 static UnaryOp<Operator::BITWISE_NOT> op; local
101 static UnaryOp<Operator::ABSOLUTE> op; local
107 static UnaryOp<Operator::ADDR> op; local
113 static UnaryOp<Operator::ALIGNOF> op; local
119 static UnaryOp<Operator::DATA_SEGMENT_END> op; local
125 static UnaryOp<Operator::DEFINED> op; local
131 static UnaryOp<Operator::LENGTH> op; local
137 static UnaryOp<Operator::LOADADDR> op; local
143 static UnaryOp<Operator::NEXT> op; local
149 static UnaryOp<Operator::ORIGIN> op; local
155 static UnaryOp<Operator::SIZEOF> op; local
162 static BinaryOp<Operator::MUL> op; local
168 static BinaryOp<Operator::DIV> op; local
174 static BinaryOp<Operator::MOD> op; local
180 static BinaryOp<Operator::ADD> op; local
186 static BinaryOp<Operator::SUB> op; local
192 static BinaryOp<Operator::LSHIFT> op; local
198 static BinaryOp<Operator::RSHIFT> op; local
204 static BinaryOp<Operator::LT> op; local
210 static BinaryOp<Operator::LE> op; local
216 static BinaryOp<Operator::GT> op; local
222 static BinaryOp<Operator::GE> op; local
228 static BinaryOp<Operator::EQ> op; local
234 static BinaryOp<Operator::NE> op; local
240 static BinaryOp<Operator::BITWISE_AND> op; local
246 static BinaryOp<Operator::BITWISE_XOR> op; local
252 static BinaryOp<Operator::BITWISE_OR> op; local
258 static BinaryOp<Operator::LOGICAL_AND> op; local
264 static BinaryOp<Operator::LOGICAL_OR> op; local
270 static BinaryOp<Operator::ALIGN> op; local
276 static BinaryOp<Operator::DATA_SEGMENT_RELRO_END> op; local
282 static BinaryOp<Operator::MAX> op; local
288 static BinaryOp<Operator::MIN> op; local
294 static BinaryOp<Operator::SEGMENT_START> op; local
301 static TernaryOp<Operator::TERNARY_IF> op; local
307 static TernaryOp<Operator::DATA_SEGMENT_ALIGN> op; local
    [all...]
  /frameworks/native/libs/binder/
IAppOpsCallback.cpp 39 virtual void opChanged(int32_t op, const String16& packageName) {
42 data.writeInt32(op);
58 int32_t op = data.readInt32(); local
60 opChanged(op, packageName);
  /toolchain/binutils/binutils-2.25/gprof/
mips.c 45 unsigned int op; local
64 op = bfd_get_32 (core_bfd, ((unsigned char *)core_text_space
66 if ((op & 0xfc000000) == 0x0c000000)
72 offset = (op & 0x03ffffff) << 2;
95 else if ((op & 0xfc00f83f) == 0x0000f809)
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensoroperations/
SensorOperationTest.java 50 SensorOperation op = new FakeSensorOperation(opDurationMs, TimeUnit.MILLISECONDS); local
52 assertFalse(op.getStats().flatten().containsKey("executed"));
54 op.execute(mTestNode);
57 assertTrue(op.getStats().flatten().containsKey("executed"));
59 op = new FakeSensorOperation(true, 0, TimeUnit.MILLISECONDS);
61 op.execute(mTestNode);
66 assertTrue(op.getStats().flatten().keySet().contains(SensorStats.ERROR));
77 SensorOperation op = new DelaySensorOperation(subOp, opDurationMs, TimeUnit.MILLISECONDS);
80 op.execute(mTestNode);
93 ParallelSensorOperation op = new ParallelSensorOperation()
    [all...]
  /external/libvncserver/libvncserver/
tabletranstemplate.c 62 OUT_T *op = (OUT_T *)optr; local
68 opLineEnd = op + width;
70 while (op < opLineEnd) {
71 *(op++) = t[*(ip++)];
93 OUT_T *op = (OUT_T *)optr; local
101 opLineEnd = &op[width];
103 while (op < opLineEnd) {
104 *(op++) = (redTable[(*ip >> in->redShift) & in->redMax] |
  /external/libvpx/libvpx/vp8/encoder/
dct.c 21 short *op = output; local
30 op[0] = a1 + b1;
31 op[2] = a1 - b1;
33 op[1] = (c1 * 2217 + d1 * 5352 + 14500)>>12;
34 op[3] = (d1 * 2217 - c1 * 5352 + 7500)>>12;
37 op += 4;
41 op = output;
49 op[0] = ( a1 + b1 + 7)>>4;
50 op[8] = ( a1 - b1 + 7)>>4;
52 op[4] =((c1 * 2217 + d1 * 5352 + 12000)>>16) + (d1!=0)
72 short *op = output; local
    [all...]
  /external/opencv3/3rdparty/zlib/
inftrees.h 14 table that indexes more bits of the code. op indicates whether
17 pointer, the low four bits of op is the number of index bits of
18 that table. For a length or distance, the low four bits of op
25 unsigned char op; /* operation, extra bits, table bits */ member in struct:__anon20550
30 /* op values as set by inflate_table():
  /external/opencv3/modules/cudev/include/opencv2/cudev/functional/
tuple_adapter.hpp 57 template <class Op, int n> struct UnaryTupleAdapter
59 typedef typename Op::result_type result_type;
61 Op op; member in struct:cv::cudev::UnaryTupleAdapter
64 __device__ __forceinline__ typename Op::result_type operator ()(const Tuple& t) const
66 return op(get<n>(t));
70 template <int n, class Op>
71 __host__ __device__ UnaryTupleAdapter<Op, n> unaryTupleAdapter(const Op& op)
82 Op op; member in struct:cv::cudev::BinaryTupleAdapter
    [all...]
  /external/opencv3/modules/cudev/include/opencv2/cudev/grid/detail/
reduce_to_row.hpp 68 Reductor op; local
76 myVal = op(myVal, saturate_cast<work_type>(src(y, x)));
88 blockReduce<BLOCK_SIZE_X>(srow, myVal, threadIdx.x, op);

Completed in 1092 milliseconds

1 2 3 4 5 6 7 8 91011>>