HomeSort by relevance Sort by last modified time
    Searched refs:op (Results 476 - 500 of 1743) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/8/platforms/android-9/arch-arm/usr/include/sys/
epoll.h 66 int epoll_ctl(int epfd, int op, int fd, struct epoll_event *event);
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/sys/
epoll.h 66 int epoll_ctl(int epfd, int op, int fd, struct epoll_event *event);
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/sys/
epoll.h 66 int epoll_ctl(int epfd, int op, int fd, struct epoll_event *event);
  /external/skia/legacy/src/animator/
SkScript.cpp 202 SkOp op = kUnassigned; local
212 op = kAdd;
215 op = lastPush ? kSubtract : kMinus;
218 op = kMultiply;
221 op = kDivide;
225 op = kShiftRight;
228 op = kGreaterEqual;
235 op = kShiftLeft;
238 op = kGreaterEqual;
245 op = kEqual
    [all...]
SkScriptRuntime.cpp 64 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 - SkScriptEngine2::kIntToScalar].fS32)
    [all...]
  /external/skia/src/animator/
SkScript.cpp 202 SkOp op = kUnassigned; local
212 op = kAdd;
215 op = lastPush ? kSubtract : kMinus;
218 op = kMultiply;
221 op = kDivide;
225 op = kShiftRight;
228 op = kGreaterEqual;
235 op = kShiftLeft;
238 op = kGreaterEqual;
245 op = kEqual
    [all...]
SkScriptRuntime.cpp 64 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 - SkScriptEngine2::kIntToScalar].fS32)
    [all...]
  /external/zlib/src/examples/
gzlog.c 325 5 /* op is NO_OP, last bit 8 bits back */
406 the log structure. Return op on success or -1 if the gzip header was not as
407 expected. op is the current operation in progress last written to the extra
412 int op; local
428 op = (buf[HEAD + 34] >> 3) & 3;
429 return op;
432 /* Write over the extra field contents, marking the operation as op. Use fsync
437 local int log_mark(struct log *log, int op)
449 ext[34] = log->back - 3 + (op << 3);
718 local void log_log(struct log *log, int op, char *record
814 int op; local
    [all...]
  /external/compiler-rt/lib/msandr/
msandr.cc 165 opnd_t op = instr_get_dst(instr, d); local
166 if (OperandIsInteresting(op))
177 void InstrumentMops(void *drcontext, instrlist_t *bb, instr_t *instr, opnd_t op,
200 opnd_is_memory_reference(op), opnd_is_base_disp(op),
201 opnd_is_base_disp(op) ? opnd_get_index(op) : -1,
202 opnd_is_far_memory_reference(op), opnd_is_reg_pointer_sized(op),
203 opnd_is_base_disp(op) ? opnd_get_disp(op) : -1)
457 opnd_t op = instr_get_dst(i, d); local
    [all...]
  /external/regex-re2/re2/
prefilter.cc 20 Prefilter::Prefilter(Op op) {
21 op_ = op;
68 // Combines two Prefilters together to create an "op" (AND or OR).
71 Prefilter* Prefilter::AndOr(Op op, Prefilter* a, Prefilter* b) {
72 // If a, b can be rewritten as op, do so.
76 // Canonicalize: a->op <= b->op.
77 if (a->op() > b->op())
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
ParseHelper.cpp 236 void TParseContext::assignError(int line, const char* op, TString left, TString right)
238 error(line, "", op, "cannot convert from '%s' to '%s'",
245 void TParseContext::unaryOpError(int line, const char* op, TString operand)
247 error(line, " wrong operand type", op,
249 op, operand.c_str());
255 void TParseContext::binaryOpError(int line, const char* op, TString left, TString right)
257 error(line, " wrong operand types ", op,
260 op, left.c_str(), right.c_str());
287 bool TParseContext::lValueErrorCheck(int line, const char* op, TIntermTyped* node)
299 return lValueErrorCheck(line, op, binaryNode->getLeft())
    [all...]
Intermediate.cpp 25 const char* getOperatorString(TOperator op) {
26 switch (op) {
146 TIntermTyped* TIntermediate::addBinaryMath(TOperator op, TIntermTyped* left, TIntermTyped* right, TSourceLoc line, TSymbolTable& symbolTable)
148 switch (op) {
185 TIntermTyped* child = addConversion(op, left->getType(), right);
189 child = addConversion(op, right->getType(), left);
201 TIntermBinary* node = new TIntermBinary(op);
232 TIntermTyped* TIntermediate::addAssign(TOperator op, TIntermTyped* left, TIntermTyped* right, TSourceLoc line)
238 TIntermBinary* node = new TIntermBinary(op);
243 TIntermTyped* child = addConversion(op, left->getType(), right)
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapObexServer.java 250 public int onPut(final Operation op) {
310 public int onGet(Operation op) {
319 request = op.getReceivedHeader();
405 return pullVcardListing(appParam, appParamValue, reply, op);
409 return pullVcardEntry(appParam, appParamValue, op, name, mCurrentPath);
413 return pullPhonebook(appParam, appParamValue, reply, op, name);
546 private final int sendVcardListingXml(final int type, Operation op,
587 return pushBytes(op, result.toString());
641 private final int pushHeader(final Operation op, final HeaderSet reply) {
649 op.sendHeaders(reply)
    [all...]
  /external/libvpx/libvpx/vp8/encoder/x86/
dct_sse2.asm 105 packssdw xmm0, xmm1 ;op[2] op[0]
106 packssdw xmm3, xmm4 ;op[3] op[1]
153 packssdw xmm0, xmm1 ;op[8] op[0]
157 packssdw xmm3, xmm4 ;op[12] op[4]
159 paddw xmm3, xmm2 ;op[4] += (d1!=0)
160 punpcklqdq xmm0, xmm3 ;op[4] op[0
    [all...]
  /external/openssl/crypto/asn1/
asn1_par.c 115 const unsigned char *p,*ep,*tot,*op,*opp; local
131 op=p-1;
132 while ((p < tot) && (op < p))
134 op=p;
146 hl=(p-op);
149 if (BIO_printf(bp,"%5ld:",(long)offset+(long)(op- *pp))
222 opp=op;
238 opp=op;
255 opp=op;
324 opp=op;
    [all...]
  /external/valgrind/main/VEX/priv/
host_amd64_defs.c 276 AMD64RMI* op = LibVEX_Alloc(sizeof(AMD64RMI)); local
277 op->tag = Armi_Imm;
278 op->Armi.Imm.imm32 = imm32;
279 return op;
282 AMD64RMI* op = LibVEX_Alloc(sizeof(AMD64RMI)); local
283 op->tag = Armi_Reg;
284 op->Armi.Reg.reg = reg;
285 return op;
288 AMD64RMI* op = LibVEX_Alloc(sizeof(AMD64RMI)); local
289 op->tag = Armi_Mem
356 AMD64RI* op = LibVEX_Alloc(sizeof(AMD64RI)); local
362 AMD64RI* op = LibVEX_Alloc(sizeof(AMD64RI)); local
412 AMD64RM* op = LibVEX_Alloc(sizeof(AMD64RM)); local
418 AMD64RM* op = LibVEX_Alloc(sizeof(AMD64RM)); local
    [all...]
  /dalvik/vm/compiler/template/armv5te/
TEMPLATE_MEM_OP_DECODE.S 6 * This handler then calls a function to decode the memory op, and process
8 * skip the memory op so it never gets executed.
14 blx r2 @ decode and handle the mem op
  /dalvik/vm/compiler/template/armv5te-vfp/
TEMPLATE_MEM_OP_DECODE.S 6 * This handler then calls a function to decode the memory op, and process
8 * skip the memory op so it never gets executed.
15 blx r2 @ decode and handle the mem op
  /dalvik/vm/mterp/arm-vfp/
fbinop2addr.S 4 * "s2 = s0 op s1".
18 $instr @ s2<- op
fbinopWide2addr.S 4 * "d2 = d0 op d1".
19 $instr @ d2<- op
funop.S 3 * line that specifies an instruction that performs "s1 = op s0".
14 $instr @ s1<- op
funopNarrower.S 3 * "instr" line that specifies an instruction that performs "s0 = op d0".
14 $instr @ s0<- op
funopWider.S 3 * "instr" line that specifies an instruction that performs "d0 = op s0".
14 $instr @ d0<- op
  /dalvik/vm/mterp/armv5te/
binopLit16.S 4 * that specifies an instruction that performs "result = r0 op r1".
26 $instr @ $result<- op, r0-r3 changed
  /dalvik/vm/mterp/armv6t2/
binopLit16.S 4 * that specifies an instruction that performs "result = r0 op r1".
25 $instr @ $result<- op, r0-r3 changed

Completed in 987 milliseconds

<<11121314151617181920>>