Searched refs:op (Results 251 - 275 of 1703) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_server.c223 int op; /* Opcode for the message */ member in struct:SqlMessage
237 ** Legal values for SqlMessage.op
296 while( pMsg->op!=MSG_Done ){
334 msg.op = MSG_Open;
348 msg.op = MSG_Prepare;
359 msg.op = MSG_Step;
366 msg.op = MSG_Reset;
373 msg.op = MSG_Finalize;
380 msg.op = MSG_Close;
422 switch( pMsg->op ){
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DCodeAnalyzer.java82 int op = ci.byteAt(index);
83 stackDepth = visitInst(op, ci, index, stackDepth);
87 if (processBranch(op, ci, index, codeLength, stack, stackDepth, jsrDepth))
90 if (isEnd(op)) // return, ireturn, athrow, ...
93 if (op == JSR || op == JSR_W)
211 private int visitInst(int op, CodeIterator ci, int index, int stack) argument
215 switch (op) {
249 op = ci.byteAt(index + 1);
252 stack += STACK_GROW[op];
[all...]
/external/kernel-headers/original/linux/
H A Dsignal.h95 #define _SIG_SET_BINOP(name, op) \
105 r->sig[3] = op(a3, b3); \
106 r->sig[2] = op(a2, b2); \
109 r->sig[1] = op(a1, b1); \
112 r->sig[0] = op(a0, b0); \
133 #define _SIG_SET_OP(name, op) \
139 case 4: set->sig[3] = op(set->sig[3]); \
140 set->sig[2] = op(set->sig[2]); \
141 case 2: set->sig[1] = op(set->sig[1]); \
142 case 1: set->sig[0] = op(se
[all...]
/external/libvorbis/test/
H A Dwrite_read.c37 ogg_packet op; local
105 while (vorbis_bitrate_flushpacket (&vd,&op)) {
106 ogg_stream_packetin (&os,&op);
138 ogg_packet op; local
185 if (ogg_stream_packetout(&os,&op) != 1) {
190 if (vorbis_synthesis_headerin (&vi,&vc,&op) < 0) {
207 result = ogg_stream_packetout (&os,&op);
213 vorbis_synthesis_headerin (&vi,&vc,&op);
248 result = ogg_stream_packetout (&os,&op);
258 if (vorbis_synthesis (&vb,&op)
[all...]
/external/libvpx/libvpx/vp8/encoder/arm/armv6/
H A Dwalsh_v6.asm72 ; op[0,4,8,12]
78 strh r2, [r1] ; op[0]
84 strh r0, [r1, #24] ; op[12]
91 strh r2, [r1, #8] ; op[4]
98 strh r0, [r1, #16] ; op[8]
101 ; op[3,7,11,15]
115 strh r2, [r1, #6] ; op[3]
121 strh r9, [r1, #14] ; op[7]
127 strh r2, [r1, #22] ; op[11]
134 strh r9, [r1, #30] ; op[1
[all...]
/external/skia/src/animator/
H A DSkParseSVGPath.cpp120 char op = '\0'; local
129 if (op == '\0')
133 op = ch;
135 if (islower(op)) {
136 op = (char) toupper(op);
142 switch (op) {
146 op = 'L';
217 op = '\0';
232 previousOp = op;
[all...]
/external/skia/src/utils/
H A DSkParsePath.cpp76 char op = '\0'; local
86 if (op == '\0') {
90 op = ch;
92 if (is_lower(op)) {
93 op = (char) to_upper(op);
99 switch (op) {
103 op = 'L';
164 op = '\0';
178 previousOp = op;
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nvc0/codegen/
H A Dnv50_ir_lowering_nvc0.cpp73 bld.mkMov(i->getDef(0), def[(i->op == OP_DIV) ? 0 : 1]);
74 bld.mkClobber(FILE_GPR, (i->op == OP_DIV) ? 0xe : 0xd, 2);
104 switch (i->op) {
204 while (insn->op == OP_MOV && insn->getDef(0)->equals(insn->getSrc(0)))
210 switch (insn->op) {
224 // if (!isTextureOp(insn->op)) // TODO: are TEXes always ordered ?
240 if (usei->op == OP_PHI || usei->op == OP_UNION) {
249 if (usei->op == OP_SPLIT ||
250 usei->op
[all...]
/external/mesa3d/src/gallium/drivers/nvc0/codegen/
H A Dnv50_ir_lowering_nvc0.cpp73 bld.mkMov(i->getDef(0), def[(i->op == OP_DIV) ? 0 : 1]);
74 bld.mkClobber(FILE_GPR, (i->op == OP_DIV) ? 0xe : 0xd, 2);
104 switch (i->op) {
204 while (insn->op == OP_MOV && insn->getDef(0)->equals(insn->getSrc(0)))
210 switch (insn->op) {
224 // if (!isTextureOp(insn->op)) // TODO: are TEXes always ordered ?
240 if (usei->op == OP_PHI || usei->op == OP_UNION) {
249 if (usei->op == OP_SPLIT ||
250 usei->op
[all...]
/external/chromium_org/tools/gn/
H A Doperators.cc237 *err = Err(op_node->op(), "Incompatible types to add.",
293 *err = Err(op_node->op(), "Incompatible types to add.",
490 DCHECK(op_node->op().type() == Token::BANG);
506 const Token& op = op_node->op(); local
509 if (op.type() == Token::EQUAL ||
510 op.type() == Token::PLUS_EQUALS ||
511 op.type() == Token::MINUS_EQUALS) {
514 *err = Err(op, "Operator requires an lvalue.",
525 *err = Err(op, "Operato
[all...]
/external/chromium_org/net/proxy/
H A Dproxy_resolver_v8_tracing.cc148 void Start(Operation op, bool blocking_dns,
157 ResolveDnsOperation op,
164 ResolveDnsOperation op,
168 ResolveDnsOperation op,
173 ResolveDnsOperation op,
182 bool GetDnsFromLocalCache(const std::string& host, ResolveDnsOperation op,
185 void SaveDnsToLocalCache(const std::string& host, ResolveDnsOperation op,
190 ResolveDnsOperation op);
192 // Makes a key for looking up |host, op| in |dns_cache_|. Strings are used for
195 ResolveDnsOperation op);
606 Start(Operation op, bool blocking_dns, const CompletionCallback& callback) argument
701 ResolveDns(const std::string& host, ResolveDnsOperation op, std::string* output, bool* terminate) argument
729 ResolveDnsBlocking(const std::string& host, ResolveDnsOperation op, std::string* output) argument
758 ResolveDnsNonBlocking(const std::string& host, ResolveDnsOperation op, std::string* output, bool* terminate) argument
814 PostDnsOperationAndWait( const std::string& host, ResolveDnsOperation op, bool* completed_synchronously) argument
923 GetDnsFromLocalCache( const std::string& host, ResolveDnsOperation op, std::string* output, bool* return_value) argument
939 SaveDnsToLocalCache( const std::string& host, ResolveDnsOperation op, int net_error, const net::AddressList& addresses) argument
968 MakeDnsRequestInfo( const std::string& host, ResolveDnsOperation op) argument
985 MakeDnsCacheKey( const std::string& host, ResolveDnsOperation op) argument
[all...]
/external/e2fsprogs/misc/
H A Duuidd.c141 static int call_daemon(const char *socket_path, int op, char *buf, argument
151 if (((op == 4) || (op == 5)) && !num) {
176 if (op == 5) {
180 op_buf[0] = op;
182 if ((op == 4) || (op == 5)) {
210 if ((ret > 0) && (op == 4)) {
216 if ((ret > 0) && (op == 5)) {
238 char op, st local
[all...]
/external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
H A DANTLRv3.g257 ( (op='^'|op='!') -> ^($op range)
261 ( (op='^'|op='!') -> ^($op notSet)
265 ( (op='^'|op='!') -> ^($op RULE_REF ARG_ACTION?)
323 ( op
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_glsl_to_tgsi.cpp213 unsigned op; member in class:glsl_to_tgsi_instruction
368 glsl_to_tgsi_instruction *emit(ir_instruction *ir, unsigned op);
370 glsl_to_tgsi_instruction *emit(ir_instruction *ir, unsigned op,
373 glsl_to_tgsi_instruction *emit(ir_instruction *ir, unsigned op,
376 glsl_to_tgsi_instruction *emit(ir_instruction *ir, unsigned op,
380 unsigned get_opcode(ir_instruction *ir, unsigned op,
393 void emit_scalar(ir_instruction *ir, unsigned op,
396 void emit_scalar(ir_instruction *ir, unsigned op,
399 void try_emit_float_set(ir_instruction *ir, unsigned op, st_dst_reg dst);
403 void emit_scs(ir_instruction *ir, unsigned op,
489 emit(ir_instruction *ir, unsigned op, st_dst_reg dst, st_src_reg src0, st_src_reg src1, st_src_reg src2) argument
586 emit(ir_instruction *ir, unsigned op, st_dst_reg dst, st_src_reg src0, st_src_reg src1) argument
593 emit(ir_instruction *ir, unsigned op, st_dst_reg dst, st_src_reg src0) argument
601 emit(ir_instruction *ir, unsigned op) argument
610 try_emit_float_set(ir_instruction *ir, unsigned op, st_dst_reg dst) argument
630 get_opcode(ir_instruction *ir, unsigned op, st_dst_reg dst, st_src_reg src0, st_src_reg src1) argument
703 emit_scalar(ir_instruction *ir, unsigned op, st_dst_reg dst, st_src_reg orig_src0, st_src_reg orig_src1) argument
748 emit_scalar(ir_instruction *ir, unsigned op, st_dst_reg dst, st_src_reg src0) argument
762 int op = TGSI_OPCODE_ARL; local
785 emit_scs(ir_instruction *ir, unsigned op, st_dst_reg dst, const st_src_reg &src) argument
1336 st_src_reg op[Elements(ir->operands)]; local
[all...]
/external/mesa3d/src/mesa/state_tracker/
H A Dst_glsl_to_tgsi.cpp213 unsigned op; member in class:glsl_to_tgsi_instruction
368 glsl_to_tgsi_instruction *emit(ir_instruction *ir, unsigned op);
370 glsl_to_tgsi_instruction *emit(ir_instruction *ir, unsigned op,
373 glsl_to_tgsi_instruction *emit(ir_instruction *ir, unsigned op,
376 glsl_to_tgsi_instruction *emit(ir_instruction *ir, unsigned op,
380 unsigned get_opcode(ir_instruction *ir, unsigned op,
393 void emit_scalar(ir_instruction *ir, unsigned op,
396 void emit_scalar(ir_instruction *ir, unsigned op,
399 void try_emit_float_set(ir_instruction *ir, unsigned op, st_dst_reg dst);
403 void emit_scs(ir_instruction *ir, unsigned op,
489 emit(ir_instruction *ir, unsigned op, st_dst_reg dst, st_src_reg src0, st_src_reg src1, st_src_reg src2) argument
586 emit(ir_instruction *ir, unsigned op, st_dst_reg dst, st_src_reg src0, st_src_reg src1) argument
593 emit(ir_instruction *ir, unsigned op, st_dst_reg dst, st_src_reg src0) argument
601 emit(ir_instruction *ir, unsigned op) argument
610 try_emit_float_set(ir_instruction *ir, unsigned op, st_dst_reg dst) argument
630 get_opcode(ir_instruction *ir, unsigned op, st_dst_reg dst, st_src_reg src0, st_src_reg src1) argument
703 emit_scalar(ir_instruction *ir, unsigned op, st_dst_reg dst, st_src_reg orig_src0, st_src_reg orig_src1) argument
748 emit_scalar(ir_instruction *ir, unsigned op, st_dst_reg dst, st_src_reg src0) argument
762 int op = TGSI_OPCODE_ARL; local
785 emit_scs(ir_instruction *ir, unsigned op, st_dst_reg dst, const st_src_reg &src) argument
1336 st_src_reg op[Elements(ir->operands)]; local
[all...]
/external/chromium_org/cc/base/
H A Dregion.cc75 skregion_.op(gfx::RectToSkIRect(rect), SkRegion::kDifference_Op);
79 skregion_.op(region.skregion_, SkRegion::kDifference_Op);
83 skregion_.op(gfx::RectToSkIRect(rect), SkRegion::kUnion_Op);
87 skregion_.op(region.skregion_, SkRegion::kUnion_Op);
91 skregion_.op(gfx::RectToSkIRect(rect), SkRegion::kIntersect_Op);
95 skregion_.op(region.skregion_, SkRegion::kIntersect_Op);
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_target_nv50.cpp71 operation op; member in struct:nv50_ir::opProperties
141 opInfo[i].op = (operation)i;
172 opInfo[prop->op].srcMods[s] |= NV50_IR_MOD_NEG;
174 opInfo[prop->op].srcMods[s] |= NV50_IR_MOD_ABS;
176 opInfo[prop->op].srcMods[s] |= NV50_IR_MOD_NOT;
178 opInfo[prop->op].srcFiles[s] |= 1 << (int)FILE_MEMORY_CONST;
180 opInfo[prop->op].srcFiles[s] |= 1 << (int)FILE_MEMORY_SHARED;
182 opInfo[prop->op].srcFiles[s] |= 1 << (int)FILE_SHADER_INPUT;
184 opInfo[prop->op].srcFiles[s] |= 1 << (int)FILE_IMMEDIATE;
187 opInfo[prop->op]
373 isOpSupported(operation op, DataType ty) const argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Datifragshader.h98 _mesa_ColorFragmentOp1ATI(GLenum op, GLuint dst, GLuint dstMask,
103 _mesa_ColorFragmentOp2ATI(GLenum op, GLuint dst, GLuint dstMask,
109 _mesa_ColorFragmentOp3ATI(GLenum op, GLuint dst, GLuint dstMask,
116 _mesa_AlphaFragmentOp1ATI(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1,
120 _mesa_AlphaFragmentOp2ATI(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1,
125 _mesa_AlphaFragmentOp3ATI(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1,
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_target_nv50.cpp71 operation op; member in struct:nv50_ir::opProperties
141 opInfo[i].op = (operation)i;
172 opInfo[prop->op].srcMods[s] |= NV50_IR_MOD_NEG;
174 opInfo[prop->op].srcMods[s] |= NV50_IR_MOD_ABS;
176 opInfo[prop->op].srcMods[s] |= NV50_IR_MOD_NOT;
178 opInfo[prop->op].srcFiles[s] |= 1 << (int)FILE_MEMORY_CONST;
180 opInfo[prop->op].srcFiles[s] |= 1 << (int)FILE_MEMORY_SHARED;
182 opInfo[prop->op].srcFiles[s] |= 1 << (int)FILE_SHADER_INPUT;
184 opInfo[prop->op].srcFiles[s] |= 1 << (int)FILE_IMMEDIATE;
187 opInfo[prop->op]
373 isOpSupported(operation op, DataType ty) const argument
[all...]
/external/mesa3d/src/mesa/main/
H A Datifragshader.h98 _mesa_ColorFragmentOp1ATI(GLenum op, GLuint dst, GLuint dstMask,
103 _mesa_ColorFragmentOp2ATI(GLenum op, GLuint dst, GLuint dstMask,
109 _mesa_ColorFragmentOp3ATI(GLenum op, GLuint dst, GLuint dstMask,
116 _mesa_AlphaFragmentOp1ATI(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1,
120 _mesa_AlphaFragmentOp2ATI(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1,
125 _mesa_AlphaFragmentOp3ATI(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1,
/external/zlib/src/
H A Dinftrees.c118 here.op = (unsigned char)64; /* invalid code marker */
220 here.op = (unsigned char)0;
224 here.op = (unsigned char)(extra[work[sym]]);
228 here.op = (unsigned char)(32 + 64); /* end of block */
286 (*table)[low].op = (unsigned char)curr;
296 here.op = (unsigned char)64; /* invalid code marker */
/external/chromium/chrome/browser/chromeos/login/
H A Dsigned_settings_helper.h27 // Callback of CheckWhitelistOp. |success| indicates whether the op succeeds
86 virtual void OnOpCreated(SignedSettings* op) = 0;
87 virtual void OnOpStarted(SignedSettings* op) = 0;
88 virtual void OnOpCompleted(SignedSettings* op) = 0;
/external/chromium_org/gpu/config/
H A Dgpu_control_list_version_info_unittest.cc19 const std::string op[] = { local
28 for (size_t i = 0; i < arraysize(op); ++i) {
31 if (op[i] != "any")
33 if (op[i] == "between")
35 VersionInfo info(op[i], std::string(), string1, string2);
74 const std::string op[] = { local
83 for (size_t i = 0; i < arraysize(op); ++i) {
85 VersionInfo info(op[i], std::string(), "8.9", std::string());
86 if (op[i] == "between")
92 VersionInfo info(op[
[all...]
/external/chromium_org/net/base/
H A Dint128.h125 #define CMP128(op) \
126 inline bool operator op(const uint128& lhs, const uint128& rhs) { \
128 (Uint128Low64(lhs) op Uint128Low64(rhs)) : \
129 (Uint128High64(lhs) op Uint128High64(rhs)); \
161 #define LOGIC128(op) \
162 inline uint128 operator op(const uint128& lhs, const uint128& rhs) { \
163 return uint128(Uint128High64(lhs) op Uint128High64(rhs), \
164 Uint128Low64(lhs) op Uint128Low64(rhs)); \
173 #define LOGICASSIGN128(op) \
174 inline uint128& uint128::operator op(cons
[all...]
/external/kernel-headers/original/asm-x86/
H A Dmsr.h229 static inline void cpuid(int op, unsigned int *eax, unsigned int *ebx, argument
237 : "0" (op));
241 static inline void cpuid_count(int op, int count, int *eax, int *ebx, int *ecx, argument
249 : "0" (op), "c" (count));
255 static inline unsigned int cpuid_eax(unsigned int op) argument
261 : "0" (op)
265 static inline unsigned int cpuid_ebx(unsigned int op) argument
271 : "0" (op)
275 static inline unsigned int cpuid_ecx(unsigned int op) argument
281 : "0" (op)
285 cpuid_edx(unsigned int op) argument
[all...]

Completed in 980 milliseconds

<<11121314151617181920>>