/external/linux-tools-perf/util/ |
callchain.h | 54 u64 ip; member in struct:callchain_list 66 u64 ip; member in struct:callchain_cursor_node 117 int callchain_cursor_append(struct callchain_cursor *cursor, u64 ip,
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
r500_fragprog_emit.c | 223 static void alu_nop(struct r300_fragment_program_compiler *c, int ip) 227 if ((code->inst[ip].inst0 & 0x3) != R500_INST_TYPE_TEX) { 228 code->inst[ip].inst0 |= R500_INST_NOP; 237 int ip; local 245 ip = ++code->inst_end; 250 if (ip > 0) { 251 alu_nop(c, ip - 1); 255 code->inst[ip].inst5 = translate_rgb_op(c, inst->RGB.Opcode); 256 code->inst[ip].inst4 = translate_alpha_op(c, inst->Alpha.Opcode); 259 code->inst[ip].inst0 = R500_INST_TYPE_OUT 373 int ip; local 663 int ip; local [all...] |
radeon_dataflow_deadcode.c | 155 struct instruction_state * insts = &s->Instructions[inst->IP]; 219 unsigned int ip; local 312 ip = 0; 315 inst = inst->Next, ++ip) { 324 inst->U.I.DstReg.WriteMask = s.Instructions[ip].WriteMask; 325 if (s.Instructions[ip].WriteMask) 328 if (s.Instructions[ip].WriteALUResult) 341 usemask = s.Instructions[ip].WriteMask;
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_sf_emit.c | 169 struct brw_reg ip = brw_ip_reg(); local 187 brw_JMPI(p, ip, ip, c->pv); 191 brw_JMPI(p, ip, ip, brw_imm_d(jmpi*(nr*4+1))); 195 brw_JMPI(p, ip, ip, brw_imm_d(jmpi*nr*2)); 208 struct brw_reg ip = brw_ip_reg(); local 226 brw_JMPI(p, ip, ip, c->pv) 718 struct brw_reg ip = brw_ip_reg(); local [all...] |
brw_vec4.cpp | 284 int ip = 0; local 290 loop_start = ip; 300 use[i] = ip; 310 use[reg] = ip; 326 def[reg] = MIN2(def[reg], ip); 333 ip++; 707 int ip = next_ip; local 722 if (this->virtual_grf_use[inst->src[0].reg] > ip)
|
/external/mesa3d/src/mesa/drivers/dri/r200/ |
r200_vertprog.c | 64 #define OPN(operator, ip) {#operator, OPCODE_##operator, ip} 69 unsigned long ip; /* number of input operands and flags */ member in struct:__anon25583 347 return op_names[i].ip; [all...] |
/external/mesa3d/src/mesa/main/ |
texparam.c | 1691 GLint ip[4]; local [all...] |
/external/opencv/cv/src/ |
cvgeometry.cpp | 179 CvPoint ip = {0,0}; local 208 if( !is_float && !measure_dist && (ip.x = cvRound(pt.x)) == pt.x && (ip.y = cvRound(pt.y)) == pt.y ) 220 if( (v0.y <= ip.y && v.y <= ip.y) || 221 (v0.y > ip.y && v.y > ip.y) || 222 (v0.x < ip.x && v.x < ip.x) ) 224 if( ip.y == v.y && (ip.x == v.x || (ip.y == v0.y & [all...] |
cvsamplers.cpp | 90 CvPoint ip, CvRect* pRect ) 95 if( ip.x >= 0 ) 97 src += ip.x*pix_size; 102 rect.x = -ip.x; 107 if( ip.x + win_size.width < src_size.width ) 111 rect.width = src_size.width - ip.x - 1; 120 if( ip.y >= 0 ) 122 src += ip.y * src_step; 126 rect.y = -ip.y; 128 if( ip.y + win_size.height < src_size.height 396 CvPoint ip; local [all...] |
/external/openssh/ |
canohost.c | 56 /* Get IP address of client. */ 80 /* Map the IP address to a host name. */ 83 /* Host name not found. Use ip address. */ 110 * Map it back to an IP address and check that the given 113 * define arbitrary names for an IP address. Mapping from 114 * name to IP address can be trusted better (but can still be 146 * If IP options are supported, make sure there are none (log and 149 * (ip-address) you are not. That itself may be "almost acceptable" 152 * source routing here, the other side could use IP spoofing to do 154 * exit here if we detect any IP options 166 struct protoent *ip; local [all...] |