HomeSort by relevance Sort by last modified time
    Searched defs:op (Results 176 - 200 of 1647) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/pdfium/third_party/zlib_v128/
inffast.c 91 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/skia/samplecode/
SampleAAClip.cpp 15 static void testop(const SkIRect& r0, const SkIRect& r1, SkRegion::Op op,
20 c2.op(c0, c1, op);
29 SkRegion::Op op; member in struct:__anon22865
39 testop(gRec[i].r0, gRec[i].r1, gRec[i].op, gRec[i].expectedR);
98 aaclip3.op(aaclip, aaclip2, SkRegion::kIntersect_Op);
  /external/skia/src/animator/
SkScriptDecompile.cpp 14 #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 + 1)
128 SkScriptEngine2::TypeOp op = (SkScriptEngine2::TypeOp) *opCode++; local
    [all...]
  /external/strace/
seccomp.c 213 unsigned int op = tcp->u_arg[0]; local
215 printxval(seccomp_ops, op, "SECCOMP_SET_MODE_???");
218 if (op == SECCOMP_SET_MODE_FILTER) {
  /external/v8/src/compiler/
basic-block-instrumentor.cc 26 const Operator* op = (*i)->op(); local
27 if (OperatorProperties::IsBasicBlockBegin(op)) continue;
28 switch (op->opcode()) {
representation-change.cc 122 // Representations are the same. That's a no-op.
186 const Operator* op; local
188 op = simplified()->ChangeBitToBool();
191 op = simplified()->ChangeUint32ToTagged();
193 op = simplified()->ChangeInt32ToTagged();
201 op = simplified()->ChangeFloat64ToTagged();
203 op = simplified()->ChangeFloat64ToTagged();
208 return jsgraph()->graph()->NewNode(op, node);
235 const Operator* op; local
241 op = machine()->ChangeInt32ToFloat64()
290 const Operator* op; local
336 const Operator* op; local
395 const Operator* op; local
    [all...]
  /external/v8/test/unittests/compiler/
linkage-tail-call-unittest.cc 58 const Operator* op = common.Call(desc); local
59 Node* const node = Node::New(zone(), 1, op, 0, nullptr, false);
76 const Operator* op = common.Call(desc2); local
77 Node* const node = Node::New(zone(), 1, op, 0, nullptr, false);
96 const Operator* op = common.Call(desc2); local
97 Node* const node = Node::New(zone(), 1, op, 0, nullptr, false);
117 const Operator* op = common.Call(desc2); local
118 Node* const node = Node::New(zone(), 1, op, 0, nullptr, false);
138 const Operator* op = common.Call(desc2); local
139 Node* const node = Node::New(zone(), 1, op, 0, nullptr, false)
159 const Operator* op = common.Call(desc2); local
180 const Operator* op = common.Call(desc2); local
205 const Operator* op = common.Call(desc2); local
231 const Operator* op = common.Call(desc2); local
258 const Operator* op = common.Call(desc2); local
286 const Operator* op = common.Call(desc2); local
314 const Operator* op = common.Call(desc2); local
342 const Operator* op = common.Call(desc2); local
    [all...]
  /external/valgrind/none/tests/mips64/
shift_instructions.c 15 logical_op op; local
18 for (op = DROTR; op <= SRLV; op++) {
20 switch(op) {
  /external/valgrind/none/tests/tilegx/
gen_insn_test.c 201 printf("//op=%d\n", op_idx);
259 Long op = decoded.operand_values[i]; local
261 ULong x = opd->insert(op);
368 Long op = decoded.operand_values[i]; local
370 ULong x = opd->insert(op);
451 printf("//op=%d\n", op_idx);
508 Long op = decoded.operand_values[i]; local
510 ULong x = opd->insert(op);
615 Long op = decoded.operand_values[i]; local
617 ULong x = opd->insert(op);
670 const struct tilegx_operand *op = decoded[i].operands[n]; local
    [all...]
  /external/valgrind/none/tests/x86/
bt_everything.c 156 UInt n, bitoff, op; local
170 op = myrandom() % 4;
172 switch (op) {
200 op = myrandom() % 4;
202 switch (op) {
  /external/zlib/src/
inffast.c 91 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...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
ExpandableOutlineView.java 110 ViewOutlineProvider op = getOutlineProvider(); local
111 return op != null;
  /frameworks/base/services/core/java/com/android/server/content/
SyncJobService.java 72 SyncOperation op = SyncOperation.maybeCreateFromJobExtras(params.getExtras()); local
73 if (op == null) {
78 Slog.v(TAG, "Got start job message " + op.target);
80 m.obj = op;
  /frameworks/native/libs/binder/
IAppOpsService.cpp 88 virtual void startWatchingMode(int32_t op, const String16& packageName,
92 data.writeInt32(op);
179 int32_t op = data.readInt32(); local
182 startWatchingMode(op, packageName, callback);
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/
vp8_fdct4x4_test.cc 31 int16_t *op = output; local
42 op[0] = a1 + d1;
43 op[12] = a1 - d1;
44 op[4] = b1 + c1;
45 op[8] = b1 - c1;
47 ++op;
50 op = output;
60 op[0] = (a1 + d1 + 4) >> 3;
61 op[3] = (a1 - d1 + 4) >> 3;
62 op[1] = (b1 + c1 + 4) >> 3
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
idctllm.c 37 short *op = output; local
54 op[shortpitch*0] = a1 + d1;
55 op[shortpitch*3] = a1 - d1;
57 op[shortpitch*1] = b1 + c1;
58 op[shortpitch*2] = b1 - c1;
61 op++;
65 op = output;
81 op[0] = (a1 + d1 + 4) >> 3;
82 op[3] = (a1 - d1 + 4) >> 3;
84 op[1] = (b1 + c1 + 4) >> 3
147 short *op = output; local
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/utils/
ContentProviderTask.java 105 final ContentProviderOperation op = ContentProviderOperation local
109 super.run(resolver, uri.getAuthority(), Lists.newArrayList(op));
118 final ContentProviderOperation op = ContentProviderOperation local
123 super.run(resolver, uri.getAuthority(), Lists.newArrayList(op));
132 final ContentProviderOperation op = ContentProviderOperation local
136 super.run(resolver, uri.getAuthority(), Lists.newArrayList(op));
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/asm/
kvm_para.h 31 __u32 op; member in struct:kvm_mmu_op_header
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
ExtractStringFix.java 71 RefactoringWizardOpenOperation op = new RefactoringWizardOpenOperation(wizard); local
74 op.run(window.getShell(), wizard.getDefaultPageTitle());
UseCompoundDrawableDetectorFix.java 85 RefactoringWizardOpenOperation op = local
90 op.run(window.getShell(), wizard.getDefaultPageTitle());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
FixImportsJob.java 114 final OrganizeImportsOperation op = new OrganizeImportsOperation(cu, local
127 new WorkbenchRunnableAdapter(op, op
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/templates/
SimpleFile.java 64 FileOp op = new FileOp(); local
67 op.source = fileArg.getSimpleValue();
69 op.destination = fileArg.getSimpleValue();
71 if (op.source == null || op.destination == null)
73 fileOps.add(op);
90 for (FileOp op : fileOps) {
91 IFile destFile = project.getFile(new Path(op.destination));
99 URL sourceURL = FileLocator.find(bundle, new Path(op.source), null);
102 + op.source)
    [all...]
  /toolchain/binutils/binutils-2.25/opcodes/
d10v-dis.c 33 struct d10v_opcode *op,
68 if (op->format == LONG_L && (oper->flags & OPERAND_REG))
156 struct d10v_opcode *op = (struct d10v_opcode *) d10v_opcodes; local
161 while (op->name)
163 if ((op->format & LONG_OPCODE)
164 && ((op->mask & insn) == (unsigned long) op->opcode))
167 (*info->fprintf_func) (info->stream, "%s\t", op->name);
169 for (i = 0; op->operands[i]; i++)
171 oper = (struct d10v_operand *) &d10v_operands[op->operands[i]]
200 struct d10v_opcode *op; local
    [all...]
ia64-dis.c 38 int op; local
40 op = IA64_OP (opcode);
42 if (op >= 8 && (unit == IA64_UNIT_I || unit == IA64_UNIT_M))
m10300-dis.c 37 struct mn10300_opcode *op = (struct mn10300_opcode *) mn10300_opcodes; local
44 while (op->name)
48 if (op->format == FMT_S0)
50 else if (op->format == FMT_S1
51 || op->format == FMT_D0)
53 else if (op->format == FMT_S2
54 || op->format == FMT_D1)
56 else if (op->format == FMT_S4)
58 else if (op->format == FMT_D2)
60 else if (op->format == FMT_D3
    [all...]

Completed in 1766 milliseconds

1 2 3 4 5 6 78 91011>>