Searched refs:block (Results 126 - 150 of 238) sorted by relevance

12345678910

/openjdk7/hotspot/src/share/vm/memory/
H A DblockOffsetTable.hpp77 // Requires "addr" to be contained by a block, and returns the address of
78 // the start of that block.
81 // Returns the address of the start of the block containing "addr", or
82 // else "null" if it is covered by no block.
275 Action_single, // BOT records a single block (see single_block())
276 Action_mark, // BOT marks the start of a block (see mark_block())
277 Action_check // Check that BOT records block correctly
327 // regime during which only block splits were updating the BOT.
372 // Adjust the BOT to show that it has a single block in the
380 // When the alloc_block() call returns, the block offse
[all...]
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_Instruction.cpp74 Instruction* Instruction::prev(BlockBegin* block) { argument
76 Instruction* q = block;
78 assert(q != NULL, "this is not in the block's instruction list");
519 assert(end != NULL, "should not reset block end to NULL");
546 // disconnect this block from it's current successors
578 // disconnect this block from all other blocks
604 // of the inserted block, without recomputing the values of the other blocks
609 // mark this block (special treatment when block order is computed)
624 // link predecessor to new block
919 BlockBegin* block = at(i); local
[all...]
H A Dc1_InstructionPrinter.hpp75 void print_inline_level(BlockBegin* block);
H A Dc1_ValueStack.cpp177 assert(stack_at(index)->as_Phi() == NULL || stack_at(index)->as_Phi()->block() != b, "phi function already created");
187 assert(local_at(index)->as_Phi() == NULL || local_at(index)->as_Phi()->block() != b, "phi function already created");
H A Dc1_ValueStack.hpp39 BlockBeginState // State of BlockBegin instruction with phi functions of this block
303 // Macro definition for simple iteration of all phif functions of a block, i.e all
304 // phi functions of the ValueStack where the block matches.
305 // Use the following code pattern to iterate all phi functions of a block:
307 // BlockBegin* block = ... // block that is iterated
308 // for_each_phi_function(block, phi,
320 if (v_phi != NULL && v_phi->block() == v_block) { \
328 if (v_phi != NULL && v_phi->block() == v_block) { \
/openjdk7/jdk/src/macosx/native/sun/java2d/opengl/
H A DCGLLayer.m174 [ThreadUtilities performOnMainThreadWaiting:YES block:^(){
223 [ThreadUtilities performOnMainThreadWaiting:[NSThread isMainThread] block:^(){
/openjdk7/hotspot/src/share/vm/runtime/
H A Dsafepoint.hpp83 int _nof_threads_wait_to_block; // total number of threads waiting for to block
87 jlong _time_to_wait_to_block; // total time in millis spent in waiting for to block
95 static volatile int _waiting_to_block; // number of threads we are waiting for to block
159 static void block(JavaThread *thread);
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DSctpChannelImpl.java142 protected void implConfigureBlocking(boolean block) throws IOException { argument
H A DSctpMultiChannelImpl.java129 protected void implConfigureBlocking(boolean block) throws IOException { argument
/openjdk7/jdk/src/share/sample/nio/multicast/
H A DReader.java51 System.err.println("usage: java Reader group:port@interf [-only source...] [-block source...]");
92 if (option.equals("-block")) {
112 // join group and block addresses on the exclude list
115 key.block(source);
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/
H A DInputGraph.java81 InputBlock noBlock = new InputBlock(this, "no block");
110 public void setBlock(InputNode node, InputBlock block) { argument
111 nodeToBlock.put(node.getId(), block);
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/gif/
H A DGIFImageReader.java84 byte[] block = new byte[255]; field in class:GIFImageReader
284 next32Bits = block[0] & 0xff;
285 next32Bits |= (block[1] & 0xff) << 8;
286 next32Bits |= (block[2] & 0xff) << 16;
287 next32Bits |= block[3] << 24;
291 // Load a block (1-255 bytes) at a time, and maintain
295 // When the last block is found, we continue to
310 // Check if current block is out of bytes
312 // Get next block size
321 int nbytes = stream.read(block, of
[all...]
/openjdk7/jdk/src/solaris/native/sun/nio/ch/
H A DFileDispatcherImpl.c176 jboolean block, jlong pos, jlong size,
196 if (block == JNI_TRUE) {
175 Java_sun_nio_ch_FileDispatcherImpl_lock0(JNIEnv *env, jobject this, jobject fdo, jboolean block, jlong pos, jlong size, jboolean shared) argument
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DSubWriterHolderWriter.java177 div = HtmlTree.DIV(HtmlStyle.block, strong);
188 div = HtmlTree.DIV(HtmlStyle.block, strong);
H A DHtmlSerialFieldWriter.java184 Content div = HtmlTree.DIV(HtmlStyle.block, serialFieldContent);
/openjdk7/jdk/src/share/classes/sun/tools/jar/
H A DSignatureFile.java56 * block. It should be straightforward to extent to support other
86 * used to build the signature filename (MYSIGN.SF) and the block
90 /* The digital signature block corresponding to this signature
214 * Returns the name of the block file, ending with a block suffix
228 * Returns the signature block associated with this file.
235 * Sets the signature block associated with this file.
237 public void setBlock(PKCS7 block) { argument
238 this.signatureBlock = block;
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DServerSocketChannelImpl.java273 protected void implConfigureBlocking(boolean block) throws IOException { argument
274 IOUtil.configureBlocking(fd, block);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicSliderUI.java1346 * in the thumb. The default behavior is to scroll by block. You can
1822 public ScrollListener(int dir, boolean block) { argument
1824 useBlockIncrement = block;
1831 public void setScrollByBlock(boolean block) { argument
1832 this.useBlockIncrement = block;
1903 boolean block; field in class:BasicSliderUI.ActionScroller
1906 public ActionScroller( JSlider slider, int dir, boolean block) { argument
1908 this.block = block;
1913 SHARED_ACTION.scroll(slider, BasicSliderUI.this, dir, block);
1936 boolean block; field in class:BasicSliderUI.SharedActionScroller
1938 SharedActionScroller(int dir, boolean block) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/nio/ch/
H A DNet.c385 Java_sun_nio_ch_Net_blockOrUnblock4(JNIEnv *env, jobject this, jboolean block, jobject fdo, argument
390 int opt = (block) ? IP_BLOCK_SOURCE : IP_UNBLOCK_SOURCE;
399 if (block && (WSAGetLastError() == WSAENOPROTOOPT))
460 Java_sun_nio_ch_Net_blockOrUnblock6(JNIEnv *env, jobject this, jboolean block, jobject fdo, argument
463 int opt = (block) ? MCAST_BLOCK_SOURCE : MCAST_UNBLOCK_SOURCE;
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkTopLevelBlock.cpp220 // This block requires phis:
225 // block, in which case we can't simple propagate
304 // If this block falls through to the next then it won't have been
315 return function()->block(successor->pre_order());
481 SharkTopLevelBlock *block = NULL; local
491 block = function()->block(ciblock()->exceptions()->at(i)->pre_order());
492 if (block->start() == handler->handler_bci())
495 block = NULL;
500 if (block
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dblock.cpp28 #include "opto/block.hpp"
61 pop(); // shrink list by one block
65 push(b); // grow list by one block
82 // Check for Root block
84 // Check for Start block
117 // Compute the size of first 'inst_cnt' instructions in this block.
118 // Return the number of instructions left to compute if the block has
151 // Find and remove n from block list
157 // Return empty status of a block. Empty blocks contain only the head, other
161 // Root or start block i
[all...]
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djdhuff.c2 * reserved comment block
74 /* Pointers to derived tables to be used for each block within an MCU */
77 /* Whether we care about the DC and AC coefficient values for each block */
118 /* Precalculate decoding info for each block in an MCU of this scan */
122 /* Precalculate which table to use for each block */
510 * The i'th block of the MCU is stored into the block pointed to by
544 /* Outer loop handles each block in the MCU */
547 JBLOCKROW block = MCU_data[blkn]; local
552 /* Decode a single block'
[all...]
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/activation/
H A DServerManagerImpl.java179 + IIOP_CLEAR_TEXT.value + " block=false" ) ;
363 boolean block)
372 if (block) {
411 boolean block)
420 if (block) {
526 endpointType + " block=true" ) ;
548 " block=true" ) ;
362 locateServer(ServerTableEntry entry, String endpointType, boolean block) argument
410 locateServerForORB(ServerTableEntry entry, String orbId, boolean block) argument
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DCGraphicsDevice.m164 [ThreadUtilities performOnMainThreadWaiting:YES block:^(){
293 [ThreadUtilities performOnMainThreadWaiting:YES block:^(){
/openjdk7/hotspot/src/share/vm/gc_implementation/parallelScavenge/
H A DpsParallelCompact.hpp289 // Whether the block table for this region has been filled.
292 // Number of times the block table was filled.
355 size_t _blocks_filled_count; // Number of block table fills.
397 inline BlockData* block(size_t block_idx) const;
398 inline size_t block(const BlockData* block_ptr) const;
445 inline HeapWord* block_to_addr(size_t block) const;
620 ParallelCompactData::block(size_t n) const { function in class:ParallelCompactData
710 return block(addr_to_block_idx(addr));
714 ParallelCompactData::block_to_addr(size_t block) const
716 assert(block < _block_coun
[all...]

Completed in 3136 milliseconds

12345678910