Searched refs:op (Results 26 - 50 of 1703) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/mach_override/libudis86/
H A Dsyn.c146 ud_syn_print_imm(struct ud* u, const struct ud_operand *op) argument
149 if (op->_oprcode == OP_sI && op->size != u->opr_mode) {
150 if (op->size == 8) {
151 v = (int64_t)op->lval.sbyte;
153 UD_ASSERT(op->size == 32);
154 v = (int64_t)op->lval.sdword;
160 switch (op->size) {
161 case 8 : v = op->lval.ubyte; break;
162 case 16: v = op
173 ud_syn_print_mem_disp(struct ud* u, const struct ud_operand *op, int sign) argument
[all...]
H A Dsyn-intel.c38 opr_cast(struct ud* u, struct ud_operand* op) argument
43 switch(op->size) {
57 static void gen_operand(struct ud* u, struct ud_operand* op, int syn_cast) argument
59 switch(op->type) {
61 ud_asmprintf(u, "%s", ud_reg_tab[op->base - UD_R_AL]);
66 opr_cast(u, op);
72 if (op->base) {
73 ud_asmprintf(u, "%s", ud_reg_tab[op->base - UD_R_AL]);
75 if (op->index) {
76 ud_asmprintf(u, "%s%s", op
[all...]
H A Dsyn-att.c38 opr_cast(struct ud* u, struct ud_operand* op) argument
40 switch(op->size) {
52 gen_operand(struct ud* u, struct ud_operand* op) argument
54 switch(op->type) {
56 ud_asmprintf(u, "$0x%x", op->lval.udword);
60 ud_asmprintf(u, "%%%s", ud_reg_tab[op->base - UD_R_AL]);
65 opr_cast(u, op);
70 if (op->offset != 0) {
71 ud_syn_print_mem_disp(u, op, 0);
73 if (op
[all...]
/external/javassist/src/main/javassist/compiler/ast/
H A DExpr.java33 Expr(int op, ASTree _head, ASTList _tail) { argument
35 operatorId = op;
38 Expr(int op, ASTree _head) { argument
40 operatorId = op;
43 public static Expr make(int op, ASTree oprand1, ASTree oprand2) { argument
44 return new Expr(op, oprand1, new ASTList(oprand2));
47 public static Expr make(int op, ASTree oprand1) { argument
48 return new Expr(op, oprand1);
53 public void setOperator(int op) { operatorId = op; } argument
[all...]
H A DDoubleConst.java44 public ASTree compute(int op, ASTree right) { argument
46 return compute0(op, (IntConst)right);
48 return compute0(op, (DoubleConst)right);
53 private DoubleConst compute0(int op, DoubleConst right) { argument
61 return compute(op, this.value, right.value, newType);
64 private DoubleConst compute0(int op, IntConst right) { argument
65 return compute(op, this.value, (double)right.value, this.type);
68 private static DoubleConst compute(int op, double value1, double value2, argument
72 switch (op) {
/external/chromium-trace/trace-viewer/src/cc/
H A Dpicture_ops_list_view.js66 var op = ops[i];
68 item.opIndex = op.opIndex;
69 item.textContent = i + ') ' + op.cmd_string;
71 // Display the element info associated with the op, if available.
72 if (op.elementInfo.tag || op.elementInfo.id || op.elementInfo.class) {
75 var tag = op.elementInfo.tag ? op.elementInfo.tag : 'unknown';
76 var id = op
[all...]
/external/chromium_org/v8/test/webkit/fast/js/
H A Dfunction-toString-parentheses.js106 var op = ops[j];
107 testLeftAssociativeSame(op, op);
109 testLeftAssociativeSame(ops[0], op);
114 testHigherFirst(op, nextOps[k]);
116 testHigherFirst(op, nextOps[0]);
124 var op = assignmentOperators[i];
125 testRightAssociativeSame(op, op);
127 testRightAssociativeSame("=", op);
[all...]
/external/libvpx/libvpx/vp8/common/
H A Didctllm.c37 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[
147 short *op = output; local
[all...]
/external/v8/src/
H A Dtoken.h210 static bool IsBinaryOp(Value op) {
211 return COMMA <= op && op <= MOD;
214 static bool IsCompareOp(Value op) {
215 return EQ <= op && op <= IN;
218 static bool IsOrderedRelationalCompareOp(Value op) {
219 return op == LT || op == LTE || op
[all...]
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dast_expr.cpp27 ast_expression::operator_string(enum ast_operators op) argument
75 assert((unsigned int)op < sizeof(operators) / sizeof(operators[0]));
77 return operators[op];
H A Dhir_field_selection.cpp37 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
[all...]
/external/mesa3d/src/glsl/
H A Dast_expr.cpp27 ast_expression::operator_string(enum ast_operators op) argument
75 assert((unsigned int)op < sizeof(operators) / sizeof(operators[0]));
77 return operators[op];
H A Dhir_field_selection.cpp37 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
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/svgadump/
H A Dsvga_shader_op.h46 const struct sh_opcode_info *svga_opcode_info( unsigned op );
/external/clang/test/CodeGen/
H A D2003-08-18-StructAsValue.c5 int op; member in struct:__anon16699
/external/clang/test/Sema/
H A Dbuiltin_objc_msgSend.c12 extern id objc_msgSend(id self, SEL op, ...);
/external/mesa3d/src/gallium/drivers/svga/svgadump/
H A Dsvga_shader_op.h46 const struct sh_opcode_info *svga_opcode_info( unsigned op );
/external/qemu/android/skin/
H A Dscaler.c114 ScaleOp op; local
122 op.scale = scaler->scale;
123 op.src_pitch = src_surface->pitch;
124 op.src_line = src_surface->pixels;
125 op.src_w = src_surface->w;
126 op.src_h = src_surface->h;
127 op.dst_pitch = dst_surface->pitch;
128 op.dst_line = dst_surface->pixels;
131 op.rd.x = (int)(sx * scaler->scale + scaler->xdisp);
132 op
[all...]
/external/libvpx/libvpx/vp8/common/mips/dspr2/
H A Didctllm_dspr2.c50 short *op = output; local
81 op[0] = a1 + d1;
82 op[12] = a1 - d1;
83 op[4] = b1 + c1;
84 op[8] = b1 - c1;
89 op[1] = a1 + d2;
90 op[13] = a1 - d2;
91 op[5] = b1 + c2;
92 op[9] = b1 - c2;
113 op[
288 short *op = output; local
[all...]
/external/kernel-headers/original/asm-generic/
H A Dipc.h29 #define IPCCALL(version,op) ((version)<<16 | (op))
/external/chromium_org/third_party/sqlite/src/
H A Dmkopcodeh.awk46 op[name] = -1
58 op[name] = tk[sym]
59 used[op[name]] = 1
60 sameas[op[name]] = sym
89 op["OP_Noop"] = -1;
91 op["OP_Explain"] = -1;
95 if( op[name]<0 ){
98 op[name] = cnt
100 used[op[name]] = 1;
101 if( op[nam
[all...]
/external/pixman/pixman/
H A Dpixman-mips-dspr2.h251 #define PIXMAN_MIPS_BIND_SCALED_NEAREST_SRC_DST(name, op, \
254 pixman_scaled_nearest_scanline_##name##_##op##_asm_mips ( \
262 scaled_nearest_scanline_mips_##name##_##op (dst_type * pd, \
270 pixman_scaled_nearest_scanline_##name##_##op##_asm_mips (pd, ps, w, \
274 FAST_NEAREST_MAINLOOP (mips_##name##_cover_##op, \
275 scaled_nearest_scanline_mips_##name##_##op, \
277 FAST_NEAREST_MAINLOOP (mips_##name##_none_##op, \
278 scaled_nearest_scanline_mips_##name##_##op, \
280 FAST_NEAREST_MAINLOOP (mips_##name##_pad_##op, \
281 scaled_nearest_scanline_mips_##name##_##op, \
[all...]
/external/chromium/chrome/browser/chromeos/login/
H A Dcryptohome_op_unittest.cc111 void RunTest(CryptohomeOp* op, bool outcome, int code) { argument
118 EXPECT_TRUE(op->Initiate());
140 scoped_refptr<CryptohomeOp> op(
142 RunTest(op.get(), true, kCryptohomeMountErrorNone);
147 scoped_refptr<CryptohomeOp> op(
149 RunTest(op.get(), false, kCryptohomeMountErrorFatal);
154 scoped_refptr<CryptohomeOp> op(
156 RunTest(op.get(), false, kCryptohomeMountErrorKeyFailure);
161 scoped_refptr<CryptohomeOp> op(
163 RunTest(op
[all...]
/external/chromium/chrome/browser/tab_contents/
H A Dweb_drag_utils_win.cc39 DWORD WebDragOpToWinDragOp(WebDragOperation op) { argument
40 DCHECK(op == WebDragOperationNone ||
41 op == WebDragOperationCopy ||
42 op == WebDragOperationLink ||
43 op == WebDragOperationMove ||
44 op == (WebDragOperationMove | WebDragOperationGeneric));
46 return WebDragOpMaskToWinDragOpMask(op);
/external/chromium_org/content/browser/web_contents/
H A Dweb_drag_utils_win.cc39 DWORD WebDragOpToWinDragOp(WebDragOperation op) { argument
40 DCHECK(op == WebDragOperationNone ||
41 op == WebDragOperationCopy ||
42 op == WebDragOperationLink ||
43 op == WebDragOperationMove ||
44 op == (WebDragOperationMove | WebDragOperationGeneric));
46 return WebDragOpMaskToWinDragOpMask(op);

Completed in 914 milliseconds

1234567891011>>