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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
2006-03-17-KnRMismatch.c 3 void regnode(int op);
5 void regnode(op)
6 char op;
  /dalvik/libdex/
DexOpcodes.cpp 295 const char* dexGetOpcodeName(Opcode op)
297 assert(op >= 0 && op < kNumPackedOpcodes);
298 return gOpNames[op];
  /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...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/preprocessor/seq/
fold_left.hpp 26 # define BOOST_PP_SEQ_FOLD_LEFT(op, state, seq) ...
33 # define BOOST_PP_SEQ_FOLD_LEFT_257(op, st, ss) BOOST_PP_ERROR(0x0005)
34 # define BOOST_PP_SEQ_FOLD_LEFT_I_257(op, st, ss, sz) BOOST_PP_ERROR(0x0005)
38 # define BOOST_PP_SEQ_FOLD_LEFT_CHECK_BOOST_PP_SEQ_FOLD_LEFT_I_1(op, st, ss, sz) 0
39 # define BOOST_PP_SEQ_FOLD_LEFT_CHECK_BOOST_PP_SEQ_FOLD_LEFT_I_2(op, st, ss, sz) 0
40 # define BOOST_PP_SEQ_FOLD_LEFT_CHECK_BOOST_PP_SEQ_FOLD_LEFT_I_3(op, st, ss, sz) 0
41 # define BOOST_PP_SEQ_FOLD_LEFT_CHECK_BOOST_PP_SEQ_FOLD_LEFT_I_4(op, st, ss, sz) 0
42 # define BOOST_PP_SEQ_FOLD_LEFT_CHECK_BOOST_PP_SEQ_FOLD_LEFT_I_5(op, st, ss, sz) 0
43 # define BOOST_PP_SEQ_FOLD_LEFT_CHECK_BOOST_PP_SEQ_FOLD_LEFT_I_6(op, st, ss, sz) 0
44 # define BOOST_PP_SEQ_FOLD_LEFT_CHECK_BOOST_PP_SEQ_FOLD_LEFT_I_7(op, st, ss, sz)
    [all...]
  /external/chromium_org/content/browser/web_contents/
drag_utils_gtk.cc 16 GdkDragAction WebDragOpToGdkDragAction(WebDragOperationsMask op) {
18 if (op & WebDragOperationCopy)
20 if (op & WebDragOperationLink)
22 if (op & WebDragOperationMove)
28 WebDragOperationsMask op = WebDragOperationNone; local
30 op = static_cast<WebDragOperationsMask>(op | WebDragOperationCopy);
32 op = static_cast<WebDragOperationsMask>(op | WebDragOperationLink);
34 op = static_cast<WebDragOperationsMask>(op | WebDragOperationMove)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
cellobject.h 16 #define PyCell_Check(op) (Py_TYPE(op) == &PyCell_Type)
22 #define PyCell_GET(op) (((PyCellObject *)(op))->ob_ref)
23 #define PyCell_SET(op, v) (((PyCellObject *)(op))->ob_ref = v)
rangeobject.h 23 #define PyRange_Check(op) (Py_TYPE(op) == &PyRange_Type)
iterobject.h 10 #define PySeqIter_Check(op) (Py_TYPE(op) == &PySeqIter_Type)
16 #define PyCallIter_Check(op) (Py_TYPE(op) == &PyCallIter_Type)
tupleobject.h 36 #define PyTuple_Check(op) \
37 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TUPLE_SUBCLASS)
38 #define PyTuple_CheckExact(op) (Py_TYPE(op) == &PyTuple_Type)
50 #define PyTuple_GET_ITEM(op, i) (((PyTupleObject *)(op))->ob_item[i])
51 #define PyTuple_GET_SIZE(op) Py_SIZE(op)
54 #define PyTuple_SET_ITEM(op, i, v) (((PyTupleObject *)(op))->ob_item[i] = v
    [all...]
memoryobject.h 11 #define PyMemoryView_Check(op) (Py_TYPE(op) == &PyMemoryView_Type)
14 #define PyMemoryView_GET_BUFFER(op) (&((PyMemoryViewObject *)(op))->view)
16 #define PyMemoryView_GET_BASE(op) (((PyMemoryViewObject *)(op))->view.obj)
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
cellobject.h 16 #define PyCell_Check(op) (Py_TYPE(op) == &PyCell_Type)
22 #define PyCell_GET(op) (((PyCellObject *)(op))->ob_ref)
23 #define PyCell_SET(op, v) (((PyCellObject *)(op))->ob_ref = v)
rangeobject.h 23 #define PyRange_Check(op) (Py_TYPE(op) == &PyRange_Type)
iterobject.h 10 #define PySeqIter_Check(op) (Py_TYPE(op) == &PySeqIter_Type)
16 #define PyCallIter_Check(op) (Py_TYPE(op) == &PyCallIter_Type)
tupleobject.h 36 #define PyTuple_Check(op) \
37 PyType_FastSubclass(Py_TYPE(op), Py_TPFLAGS_TUPLE_SUBCLASS)
38 #define PyTuple_CheckExact(op) (Py_TYPE(op) == &PyTuple_Type)
50 #define PyTuple_GET_ITEM(op, i) (((PyTupleObject *)(op))->ob_item[i])
51 #define PyTuple_GET_SIZE(op) Py_SIZE(op)
54 #define PyTuple_SET_ITEM(op, i, v) (((PyTupleObject *)(op))->ob_item[i] = v
    [all...]
memoryobject.h 11 #define PyMemoryView_Check(op) (Py_TYPE(op) == &PyMemoryView_Type)
14 #define PyMemoryView_GET_BUFFER(op) (&((PyMemoryViewObject *)(op))->view)
16 #define PyMemoryView_GET_BASE(op) (((PyMemoryViewObject *)(op))->view.obj)
  /external/libpcap/
bpf_image.c 46 const char *fmt, *op; local
54 op = "unimp";
60 op = "ret";
65 op = "ret";
70 op = "ld";
75 op = "ldh";
80 op = "ldb";
85 op = "ld";
90 op = "ld";
95 op = "ldh"
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Clipboard.cpp 75 static DragOperation dragOpFromIEOp(const String& op)
78 if (op == "uninitialized")
80 if (op == "none")
82 if (op == "copy")
84 if (op == "link")
86 if (op == "move")
88 if (op == "copyLink")
90 if (op == "copyMove")
92 if (op == "linkMove")
94 if (op == "all"
123 DragOperation op = dragOpFromIEOp(m_effectAllowed); local
130 DragOperation op = dragOpFromIEOp(m_dropEffect); local
    [all...]
  /external/javassist/src/main/javassist/compiler/ast/
Stmnt.java 27 public Stmnt(int op, ASTree _head, ASTList _tail) {
29 operatorId = op;
32 public Stmnt(int op, ASTree _head) {
34 operatorId = op;
37 public Stmnt(int op) {
38 this(op, null);
41 public static Stmnt make(int op, ASTree oprand1, ASTree oprand2) {
42 return new Stmnt(op, oprand1, new ASTList(oprand2));
45 public static Stmnt make(int op, ASTree op1, ASTree op2, ASTree op3) {
46 return new Stmnt(op, op1, new ASTList(op2, new ASTList(op3)))
    [all...]
  /external/chromium_org/third_party/zlib/
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/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...]
  /external/chromium_org/third_party/sqlite/src/src/
status.c 46 int sqlite3StatusValue(int op){
48 assert( op>=0 && op<ArraySize(wsdStat.nowValue) );
49 return wsdStat.nowValue[op];
56 void sqlite3StatusAdd(int op, int N){
58 assert( op>=0 && op<ArraySize(wsdStat.nowValue) );
59 wsdStat.nowValue[op] += N;
60 if( wsdStat.nowValue[op]>wsdStat.mxValue[op] ){
    [all...]
  /external/libvpx/libvpx/vp8/encoder/
dct.c 19 short *op = output; local
28 op[0] = a1 + b1;
29 op[2] = a1 - b1;
31 op[1] = (c1 * 2217 + d1 * 5352 + 14500)>>12;
32 op[3] = (d1 * 2217 - c1 * 5352 + 7500)>>12;
35 op += 4;
39 op = output;
47 op[0] = ( a1 + b1 + 7)>>4;
48 op[8] = ( a1 - b1 + 7)>>4;
50 op[4] =((c1 * 2217 + d1 * 5352 + 12000)>>16) + (d1!=0)
70 short *op = output; local
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
inffast.c 91 unsigned op; /* code bits, operation, extra bits, or */ local
129 op = (unsigned)(this.bits);
130 hold >>= op; local
131 bits -= op;
132 op = (unsigned)(this.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/valgrind/main/none/tests/mips32/
FPUarithmetic.c 63 #define UNOPdd(op) \
66 op" %0, %1\n\t" \
69 #define UNOPff(op) \
72 op" %0, %1\n\t" \
75 #define BINOPf(op) \
78 op" %0, %1, %2\n\t" \
81 #define BINOPd(op) \
84 op" %0, %1, %2\n\t" \
87 int arithmeticOperations(flt_art_op_t op)
94 switch(op) {
185 flt_art_op_t op; local
    [all...]
round.c 61 #define BINOP(op) \
63 op" %0, %1, %2\n\t" \
66 #define UNOPdd(op) \
69 op" %0, %1\n\t" \
72 #define UNOPff(op) \
75 op" %0, %1\n\t" \
78 #define UNOPfd(op) \
81 op" %0, %1\n\t" \
84 #define UNOPdf(op) \
87 op" %0, %1\n\t"
251 flt_dir_op_t op; local
    [all...]

Completed in 920 milliseconds

1 2 3 4 5 6 7 8 91011>>