Searched defs:ip (Results 1 - 25 of 26) sorted by relevance

12

/openjdk7/jdk/src/share/native/sun/awt/image/cvutils/
H A Dimg_util.h103 unsigned int *ip; member in union:__anon684
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DImageFilter.java238 * @param ip the ImageProducer that is feeding this instance of
241 * @exception NullPointerException if <code>ip</code> is null
243 public void resendTopDownLeftRight(ImageProducer ip) { argument
244 ip.requestTopDownLeftRightResend(this);
H A DPixelGrabber.java131 * @param ip the <code>ImageProducer</code> that produces the
147 public PixelGrabber(ImageProducer ip, int x, int y, int w, int h, argument
149 producer = ip;
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DrelocInfo_sparc.cpp34 NativeInstruction* ip = nativeInstruction_at(addr()); local
35 jint inst = ip->long_at(0);
87 assert(ip->long_at(0) == inst, "instructions must match");
89 ip->set_long_at(0, inst);
105 assert(ip->long_at(0) == inst, "instructions must match");
107 ip->set_long_at(0, inst);
109 inst2 = ip->long_at( NativeInstruction::nop_instruction_size );
112 assert(ip->long_at(NativeInstruction::nop_instruction_size) == NativeInstruction::set_data32_simm13( inst2, (intptr_t)np),
115 ip->set_long_at(NativeInstruction::nop_instruction_size, NativeInstruction::set_data32_simm13( inst2, (intptr_t)np));
120 ip
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A DrelocInfo_x86.cpp57 address ip = addr(); local
58 address disp = Assembler::locate_operand(ip, which);
59 address next_ip = Assembler::locate_next_instruction(ip);
165 address ip = addr(); local
166 address disp = Assembler::locate_operand(ip, which);
167 address next_ip = Assembler::locate_next_instruction(ip);
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkIntrinsics.cpp160 BasicBlock *ip = builder()->GetBlockInsertionPoint(); local
161 BasicBlock *return_a = builder()->CreateBlock(ip, "return_a");
162 BasicBlock *return_b = builder()->CreateBlock(ip, "return_b");
163 BasicBlock *done = builder()->CreateBlock(ip, "done");
H A DsharkBlock.cpp968 BasicBlock *ip = builder()->GetBlockInsertionPoint(); local
969 BasicBlock *special_case = builder()->CreateBlock(ip, "special_case");
970 BasicBlock *general_case = builder()->CreateBlock(ip, "general_case");
971 BasicBlock *done = builder()->CreateBlock(ip, "done");
1089 BasicBlock *ip = builder()->GetBlockInsertionPoint(); local
1090 BasicBlock *ne = builder()->CreateBlock(ip, "lcmp_ne");
1091 BasicBlock *lt = builder()->CreateBlock(ip, "lcmp_lt");
1092 BasicBlock *gt = builder()->CreateBlock(ip, "lcmp_gt");
1093 BasicBlock *done = builder()->CreateBlock(ip, "done");
1127 BasicBlock *ip local
[all...]
H A DsharkBuilder.cpp599 BasicBlock* SharkBuilder::CreateBlock(BasicBlock* ip, const char* name) const { argument
601 SharkContext::current(), name, GetInsertBlock()->getParent(), ip);
/openjdk7/jdk/src/share/classes/sun/nio/cs/
H A DSurrogate.java216 * @param ip The input index
224 public int parse(char c, char[] ia, int ip, int il) { argument
225 assert (ia[ip] == c);
227 if (il - ip < 2) {
231 char d = ia[ip + 1];
/openjdk7/jdk/src/share/classes/com/sun/tools/script/shell/
H A Dinit.js819 function ip(name) { function
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_ValueStack.cpp202 InstructionPrinter ip; local
207 ip.print_instr(t);
212 InstructionPrinter ip; local
220 ip.print_instr(t);
226 InstructionPrinter ip; local
235 ip.print_instr(l);
H A Dc1_Instruction.cpp104 InstructionPrinter ip; local
105 print(ip);
110 InstructionPrinter ip; local
111 ip.print_line(this);
115 void Instruction::print(InstructionPrinter& ip) { argument
116 ip.print_head();
117 ip.print_line(this);
872 InstructionPrinter ip; local
873 print_block(ip, false);
877 void BlockBegin::print_block(InstructionPrinter& ip, boo argument
917 InstructionPrinter ip; local
[all...]
H A Dc1_IR.cpp1134 BlockPrinter(InstructionPrinter* ip, bool cfg_only, bool live_only = false) { argument
1135 _ip = ip;
1152 InstructionPrinter ip(!cfg_only);
1153 BlockPrinter bp(&ip, cfg_only, live_only);
H A Dc1_GraphBuilder.cpp2127 InstructionPrinter ip;
2128 ip.print_line(i1);
2443 InstructionPrinter ip; local
2444 ip.print_instr(_block); tty->cr();
2445 ip.print_stack(_block->state()); tty->cr();
2446 ip.print_inline_level(_block);
2447 ip.print_head();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/util/
H A DSurrogate.java204 * @param ip The input index
212 public int parse(char c, char[] ia, int ip, int il) { argument
214 if (il - ip < 2) {
218 char d = ia[ip + 1];
/openjdk7/jdk/src/windows/native/java/net/
H A DInet4AddressImpl.c298 struct ip *ip; local
378 ip = (struct ip*) recvbuf;
379 hlen1 = (ip->ip_hl) << 2;
H A Dicmp.h36 struct ip { struct
93 struct ip idi_ip;
/openjdk7/jdk/test/java/net/URL/
H A DTest.java486 static void ip() { method in class:Test
603 ip();
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djpegdecoder.c174 int *ip; member in union:sun_jpeg_source_mgr::pixptr
208 if (src->outbuf.ip) {
210 src->outbuf.ip, 0);
211 src->outbuf.ip = 0;
229 assert(src->outbuf.ip == 0);
230 src->outbuf.ip = (int *)(*env)->GetPrimitiveArrayCritical
232 if (src->outbuf.ip == 0) {
503 int *ip, pixel; local
516 jsrc.outbuf.ip = 0;
671 ip
[all...]
H A DimageioJPEG.c263 INT32 *ip; // Pinned buffer pointer, as 32-bit ints member in union:pixelBufferStruct::pixptr
275 pb->buf.ip = NULL;
316 assert(pb->buf.ip == NULL);
331 if (pb->buf.ip != NULL) {
335 pb->buf.ip,
337 pb->buf.ip = NULL;
/openjdk7/jdk/src/solaris/native/java/net/
H A DInet4AddressImpl.c32 #include <netinet/ip.h>
604 struct ip *ip; local
676 ip = (struct ip*) recvbuf;
677 hlen1 = (ip->ip_hl) << 2;
/openjdk7/jdk/test/java/net/URI/
H A DTest.java933 static void ip() { method in class:Test
1541 ip();
/openjdk7/hotspot/src/share/vm/utilities/
H A Dostream.cpp1087 bool networkStream::connect(const char *ip, short port) { argument
1093 server.sin_addr.s_addr = inet_addr(ip);
1095 struct hostent* host = os::get_host_by_name((char*)ip);
/openjdk7/hotspot/src/share/vm/code/
H A Dnmethod.cpp2491 jint* ip; local
2492 for (ip = index_start; ip+2 <= index_end; ip += 2)
2494 ip[0],
2495 ip[1],
2496 header_end()+ip[0],
2497 relocation_begin()-1+ip[1]);
2498 for (; ip < index_end; ip
[all...]
/openjdk7/jdk/src/share/native/common/
H A Dcheck_code.c308 int *ip; member in union:instruction_data_type::__anon646
1089 * Set the ip fields to 0 not the i fields because the ip fields
1092 this_idata->operand.ip = 0;
1093 this_idata->operand2.ip = 0;
1174 this_idata->operand.ip = saved_operand;
1996 char *ip = buffer; local
2004 *ip++ = 'A'; /* object for putfield */
2005 *ip++ = signature_to_fieldtype(context, &signature, &put_full_info);
2006 *ip
2022 char *ip = buffer; local
[all...]

Completed in 128 milliseconds

12