Searched defs:op (Results 176 - 200 of 1255) sorted by relevance

1234567891011>>

/external/pcre/dist/sljit/
H A DsljitNativeMIPS_64.c122 (!(op & SLJIT_INT_OP) ? a : b)
126 if (op & SLJIT_SET_E) \
132 if (op & SLJIT_SET_E) \
141 SLJIT_ASSERT(!(op & SLJIT_INT_OP)); \
146 ins = (op & SLJIT_INT_OP) ? op_imm : op_dimm; \
147 if (op & SLJIT_SET_E) \
153 ins = (op & SLJIT_INT_OP) ? op_v : op_dv; \
154 if (op & SLJIT_SET_E) \
160 static SLJIT_INLINE sljit_si emit_single_op(struct sljit_compiler *compiler, sljit_si op, sljit_si flags, argument
165 switch (GET_OPCODE(op)) {
[all...]
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_inffast.c91 unsigned op; /* code bits, operation, extra bits, or */ local
129 op = (unsigned)(here.bits);
130 hold >>= op; local
131 bits -= op;
132 op = (unsigned)(here.op);
133 if (op == 0) { /* literal */
139 else if (op & 16) { /* length base */
141 op &= 15; /* number of extra bits */
142 if (op) {
148 hold >>= op; local
161 hold >>= op; local
183 hold >>= op; local
[all...]
/external/pixman/test/
H A Dcombiner-test.c94 lookup_combiner (pixman_implementation_t *imp, pixman_op_t op, argument
102 f = imp->combine_float_ca[op];
104 f = imp->combine_float[op];
130 pixman_op_t op = op_list[i]; local
136 combiner = lookup_combiner (impl, op, ca);
142 combiner (impl, op,
H A Doob-test.c16 pixman_op_t op; member in struct:__anon28869
/external/protobuf/src/google/protobuf/
H A Dwire_format.h230 static void VerifyUTF8String(const char* data, int size, Operation op);
237 Operation op);
293 WireFormat::Operation op) {
295 WireFormat::VerifyUTF8StringFallback(data, size, op);
292 VerifyUTF8String(const char* data, int size, WireFormat::Operation op) argument
/external/qemu/distrib/zlib-1.2.8/
H A Dinffast.c91 unsigned op; /* code bits, operation, extra bits, or */ local
129 op = (unsigned)(here.bits);
130 hold >>= op; local
131 bits -= op;
132 op = (unsigned)(here.op);
133 if (op == 0) { /* literal */
139 else if (op & 16) { /* length base */
141 op &= 15; /* number of extra bits */
142 if (op) {
148 hold >>= op; local
161 hold >>= op; local
183 hold >>= op; local
[all...]
/external/qemu/target-i386/
H A Dcc_helper.c87 uint32_t helper_cc_compute_all(CPUX86State *env, int op) argument
89 switch (op) {
158 uint32_t cpu_cc_compute_all(CPUArchState *env1, int op) argument
160 return helper_cc_compute_all(env1, op);
163 uint32_t helper_cc_compute_c(CPUX86State *env, int op) argument
165 switch (op) {
/external/regex-re2/re2/
H A Dprefilter.h31 explicit Prefilter(Op op);
34 Op op() { return op_; } function in class:re2::Prefilter
69 static Prefilter* AndOr(Op op, Prefilter* a, Prefilter* b);
/external/skia/samplecode/
H A DSampleAAClip.cpp14 static void testop(const SkIRect& r0, const SkIRect& r1, SkRegion::Op op, argument
19 c2.op(c0, c1, op);
28 SkRegion::Op op; member in struct:__anon30538
38 testop(gRec[i].r0, gRec[i].r1, gRec[i].op, gRec[i].expectedR);
97 aaclip3.op(aaclip, aaclip2, SkRegion::kIntersect_Op);
/external/skia/src/animator/
H A DSkScriptDecompile.cpp14 #define TypeOpName(op) {SkScriptEngine2::op, #op }
90 #define OperandName(op) {SkOperand2::op, #op }
108 SkScriptEngine2::TypeOp op = SkScriptEngine2::kNop; local
111 SkASSERT(gOpNames[index].fOp == op);
112 op = (SkScriptEngine2::TypeOp) (op
128 SkScriptEngine2::TypeOp op = (SkScriptEngine2::TypeOp) *opCode++; local
[all...]
H A DSkScriptRuntime.cpp64 SkScriptEngine2::TypeOp op; local
70 switch ((op = (SkScriptEngine2::TypeOp) *opCode++)) {
126 registerLoad = op - SkScriptEngine2::kIntegerAccumulator;
132 registerLoad = op - SkScriptEngine2::kScalarAccumulator;
140 registerLoad = op - SkScriptEngine2::kStringAccumulator;
192 if (op == SkScriptEngine2::kIntToString || op == SkScriptEngine2::kIntToString2)
193 strPtr->appendS32(operand[op - SkScriptEngine2::kIntToString].fS32);
195 strPtr->appendScalar(operand[op - SkScriptEngine2::kScalarToString].fScalar);
200 operand[0].fScalar = SkScriptEngine2::IntToScalar(operand[op
[all...]
/external/skia/src/utils/
H A DSkCanvasStack.cpp37 fCanvasData[i-1].requiredClip.op(localBounds, SkRegion::kDifference_Op);
80 void SkCanvasStack::onClipRect(const SkRect& r, SkRegion::Op op, ClipEdgeStyle edgeStyle) { argument
81 this->INHERITED::onClipRect(r, op, edgeStyle);
85 void SkCanvasStack::onClipRRect(const SkRRect& rr, SkRegion::Op op, ClipEdgeStyle edgeStyle) { argument
86 this->INHERITED::onClipRRect(rr, op, edgeStyle);
90 void SkCanvasStack::onClipPath(const SkPath& p, SkRegion::Op op, ClipEdgeStyle edgeStyle) { argument
91 this->INHERITED::onClipPath(p, op, edgeStyle);
95 void SkCanvasStack::onClipRegion(const SkRegion& deviceRgn, SkRegion::Op op) { argument
101 tempRegion.op(fCanvasData[i].requiredClip, SkRegion::kIntersect_Op);
102 fList[i]->clipRegion(tempRegion, op);
[all...]
/external/srec/srec/Semproc/include/
H A DSR_ExpressionParser.h106 LCHAR op[MAX_STRING_LEN]; member in struct:ExpressionParser_t
/external/valgrind/main/memcheck/tests/vbit-test/
H A Dmain.c12 new_test_data(const irop_t *op) argument
21 typeof_primop(op->op, &t_dst, &t1, &t2, &t3, &t4);
26 if (is_floating_point_op_with_rounding_mode(op->op)) {
41 if (is_floating_point_op_with_rounding_mode(op->op)) {
112 const irop_t *op = get_irop(opkind); local
113 if (op == NULL) continue;
115 test_data_t *data = new_test_data(op);
[all...]
/external/valgrind/main/none/tests/mips64/
H A Dshift_instructions.c15 logical_op op; local
18 for (op = DROTR; op <= SRLV; op++) {
20 switch(op) {
/external/valgrind/main/none/tests/x86/
H A Dbt_everything.c145 UInt n, bitoff, op; local
159 op = random() % 4;
161 switch (op) {
189 op = random() % 4;
191 switch (op) {
/external/zlib/src/
H A Dinffast.c91 unsigned op; /* code bits, operation, extra bits, or */ local
129 op = (unsigned)(here.bits);
130 hold >>= op; local
131 bits -= op;
132 op = (unsigned)(here.op);
133 if (op == 0) { /* literal */
139 else if (op & 16) { /* length base */
141 op &= 15; /* number of extra bits */
142 if (op) {
148 hold >>= op; local
161 hold >>= op; local
183 hold >>= op; local
[all...]
/external/aac/libFDK/include/
H A Dfixpoint_math.h104 FIXP_DBL CalcLdData(FIXP_DBL op);
108 FIXP_DBL CalcInvLdData(FIXP_DBL op);
162 FIXP_DBL sqrtFixp(FIXP_DBL op);
166 FIXP_DBL invSqrtNorm2(FIXP_DBL op, INT *shift);
171 description: delivers 1/(op)
174 inline FIXP_DBL invFixp(FIXP_DBL op) argument
177 FIXP_DBL tmp_inv = invSqrtNorm2(op, &tmp_exp) ;
/external/bluetooth/bluedroid/btif/src/
H A Dbtif_gatt_test.c115 static void btif_test_command_complete_cback(UINT16 conn_id, tGATTC_OPTYPE op, argument
119 __FUNCTION__, op, conn_id, status);
121 switch (op)
135 ALOGD ("%s: Unknown op_code (0x%02x)", __FUNCTION__, op);
/external/bluetooth/bluedroid/include/
H A Dbte.h78 /* options associated with close op */
90 UINT8 op; member in struct:tHCISU_USERIAL_MSG_tag
94 extern void bte_hcisu_userial_oper( tUSERIAL_MSG_CBACK *p_cback, UINT8 port, UINT8 op, UINT8 option );
/external/chromium_org/cc/output/
H A Dfilter_operations.cc63 const FilterOperation& op = operations_[i]; local
66 DCHECK(op.type() != FilterOperation::REFERENCE);
67 if (op.type() == FilterOperation::BLUR ||
68 op.type() == FilterOperation::DROP_SHADOW) {
69 int spread = SpreadForStdDeviation(op.amount());
70 if (op.type() == FilterOperation::BLUR) {
76 *top += spread - op.drop_shadow_offset().y();
77 *right += spread + op.drop_shadow_offset().x();
78 *bottom += spread + op.drop_shadow_offset().y();
79 *left += spread - op
87 const FilterOperation& op = operations_[i]; local
115 const FilterOperation& op = operations_[i]; local
[all...]
/external/chromium_org/chrome/browser/extensions/api/copresence/
H A Dcopresence_translations.cc198 linked_ptr<Operation> op = operations[i]; local
199 DCHECK(op.get());
202 if (static_cast<int>(op->publish != NULL) +
203 static_cast<int>(op->subscribe != NULL) +
204 static_cast<int>(op->unpublish != NULL) +
205 static_cast<int>(op->unsubscribe != NULL) != 1) {
209 if (op->publish) {
210 if (!AddPublishToRequest(app_id, *(op->publish), request))
212 } else if (op->subscribe) {
214 app_id, *(op
[all...]
/external/chromium_org/chrome/browser/prerender/
H A Dprerender_cookie_store.cc38 CookieOperation op; local
39 op.op = COOKIE_OP_SET_COOKIE_WITH_OPTIONS_ASYNC;
40 op.url = url;
41 op.cookie_line = cookie_line;
42 op.options = options;
44 GetCookieStoreForCookieOpAndLog(op)->
53 CookieOperation op; local
54 op.op
67 CookieOperation op; local
80 CookieOperation op; local
113 GetCookieStoreForCookieOpAndLog( const CookieOperation& op) argument
[all...]
/external/chromium_org/media/filters/
H A Dffmpeg_glue.cc67 static int LockManagerOperation(void** lock, enum AVLockOp op) { argument
68 switch (op) {
/external/chromium_org/mojo/system/
H A Ddispatcher_unittest.cc151 DispatcherOp op)
155 op_(op) {
282 ThreadSafetyStressThread::DispatcherOp op = local
285 threads.push_back(new ThreadSafetyStressThread(&event, d, op));
309 ThreadSafetyStressThread::DispatcherOp op = local
313 threads.push_back(new ThreadSafetyStressThread(&event, d, op));
149 ThreadSafetyStressThread(base::WaitableEvent* event, scoped_refptr<Dispatcher> dispatcher, DispatcherOp op) argument

Completed in 694 milliseconds

1234567891011>>