Searched defs:limit (Results 126 - 150 of 170) sorted by relevance

1234567

/openjdk7/jdk/src/share/classes/java/awt/font/
H A DTextLine.java1216 * If the entire range is ok, return limit, otherwise return the first
1220 int start, int limit)
1225 int count = limit - start;
1226 for (int i = start + 1; i < limit; i++) {
1242 return limit;
1297 int start, int limit)
1301 while (++start < limit && direction[start] == dir) {}
1304 return limit;
1409 // return the sum of the advances of text between the logical start and limit
1410 public static float getAdvanceBetween(TextLineComponent[] components, int start, int limit) { argument
1296 firstVisualChunk(int order[], byte direction[], int start, int limit) argument
[all...]
/openjdk7/hotspot/src/share/vm/asm/
H A DcodeBuffer.cpp155 address limit = _insts._limit; local
156 address middle = limit - size;
160 cs->initialize(middle, limit - middle);
162 assert(cs->limit() == limit, "sanity");
173 address old_limit = cs->limit();
864 // limit is an exclusive address and can be the start of another
866 guarantee(!other->contains(sect->limit() - 1), "sanity");
869 guarantee(sect->end() <= sect->limit(), "sanity");
881 n, sect->limit()
[all...]
H A DcodeBuffer.hpp148 address limit() const { return _limit; } function in class:VALUE_OBJ_CLASS_SPEC
469 address insts_limit() const { return _insts.limit(); }
/openjdk7/hotspot/src/share/vm/utilities/
H A Dostream.cpp267 size_t limit = (len + 16) / 16 * 16; local
268 for (size_t i = 0; i < limit; ++i) {
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DRenderQueue.cpp56 int limit; member in struct:__anon1078
197 int limit; local
202 limit = pFlush->limit;
203 J2dTraceLn1(J2D_TRACE_INFO, "D3DRQ_flushBuffer: limit=%d", limit);
205 end = b + limit;
932 (JNIEnv *env, jobject d3drq, jlong buf, jint limit, jobject runnable)
944 bufstr.limit = limit;
931 Java_sun_java2d_d3d_D3DRenderQueue_flushBuffer(JNIEnv *env, jobject d3drq, jlong buf, jint limit, jobject runnable) argument
[all...]
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dcoding.cpp233 void coding::parseMultiple(byte* &rp, int N, byte* limit, int B, int H) { argument
241 if (len / B != (size_t)N || ptr+len > limit) {
266 if (ptr > limit) {
819 // Get an accurate upper limit now.
/openjdk7/jdk/src/share/native/java/util/zip/
H A Dzip_util.c193 jlong limit = ((((jlong) 1) << 31) - 1); local
194 jint count = (len < limit) ?
196 (jint) limit;
1429 jlong limit = ((((jlong) 1) << 31) - 1); local
1430 jint count = (size - pos < limit) ?
1433 (jint) limit;
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djdmarker.c772 unsigned int limit; local
774 limit = marker->length_limit_COM;
776 limit = marker->length_limit_APPn[cinfo->unread_marker - (int) M_APP0];
777 if ((unsigned int) length < limit)
778 limit = (unsigned int) length;
782 SIZEOF(struct jpeg_marker_struct) + limit);
786 cur_marker->data_length = limit;
792 data_length = limit;
1331 /* Length limit mustn't be larger than what we can allocate
/openjdk7/jdk/src/share/classes/sun/swing/
H A DSwingUtilities2.java221 * @param limit limit
225 public static final boolean isComplexLayout(char[] text, int start, int limit) { argument
226 return FontUtilities.isComplexText(text, start, limit);
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLRenderQueue.c71 jlong buf, jint limit)
77 "OGLRenderQueue_flushBuffer: limit=%d", limit);
87 end = b + limit;
69 Java_sun_java2d_opengl_OGLRenderQueue_flushBuffer(JNIEnv *env, jobject oglrq, jlong buf, jint limit) argument
/openjdk7/jdk/src/share/classes/sun/awt/
H A DFontConfiguration.java1098 // exclusion range limit array length must match component face name
1612 private static boolean contains(short IDs[], short id, int limit) { argument
1613 for (int i = 0; i < limit; i++) {
/openjdk7/jdk/src/share/classes/sun/awt/datatransfer/
H A DDataTransferer.java1882 protected int index, limit; field in class:DataTransferer.ReencodingInputStream
1972 if (index >= limit) {
1981 inBuf.limit(1);
1986 inBuf.limit(2);
1991 outBuf.limit(out.length).rewind();
1994 limit = outBuf.limit();
2005 return ((eos) ? 0 : (limit - index));
/openjdk7/hotspot/src/share/vm/ci/
H A DciTypeFlow.cpp385 assert(block->limit() == start_bci(), "must flow forward to start");
406 int limit = state->limit_cell(); local
407 for (; cell < limit; cell = state->next_cell(cell)) {
423 Cell limit = limit_cell(); local
424 for (Cell c = start_cell(); c < limit; c = next_cell(c)) {
442 Cell limit = limit_cell(); local
444 { for (Cell c = start_cell(); c < limit; c = next_cell(c)) {
449 for (Cell c = start_cell(); c < limit; c = next_cell(c)) {
467 Cell limit = limit_cell(); local
468 for (Cell c = start_cell(); c < limit;
504 Cell limit = local(_outer->max_locals()-1); local
2305 int limit = block->limit(); local
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A DrelocInfo.hpp167 // [[N]n l] and l is a limit within which the set-oops occur
186 // The limit l of the search is exclusive. However, if it points within
393 // This routine updates a prefix and returns the limit pointer.
560 void set_limits(address begin, address limit);
566 void initialize(nmethod* nm, address begin, address limit);
574 RelocIterator(nmethod* nm, address begin = NULL, address limit = NULL);
575 RelocIterator(CodeSection* cb, address begin = NULL, address limit = NULL);
604 address limit() const { return _limit; } function in class:RelocIterator
995 address _oop_limit; // search limit for set-oop instructions
1006 // oop_limit is set to 0 if the limit fall
1344 RelocIterator(nmethod* nm, address begin, address limit) argument
[all...]
/openjdk7/hotspot/src/share/vm/interpreter/
H A DbytecodeInterpreter.cpp467 assert(abs(istate->_stack_base - istate->_stack_limit) == (istate->_method->max_stack() + 1), "bad stack limit");
1670 BasicObjectLock* limit = istate->monitor_base(); local
1673 while (most_recent != limit ) {
1702 BasicObjectLock* limit = istate->monitor_base(); local
1704 while (most_recent != limit ) {
/openjdk7/hotspot/src/share/vm/opto/
H A DcallGenerator.cpp681 uint limit = slow_map->req(); local
682 for (uint i = TypeFunc::Parms; i < limit; i++) {
686 if( i >= limit ) break;
930 uint limit = slow_map->req(); local
931 for (uint i = TypeFunc::Parms; i < limit; i++) {
935 if( i >= limit ) break;
H A Dcfgnode.cpp288 static bool check_compare_clipping( bool less_than, IfNode *iff, ConNode *limit, Node * & input ) { argument
297 // is equivalent to the int value used as a limit
301 jint coni = limit->get_int();
897 // protect against init_trip() or limit() returning NULL
899 const Node *limit = l->limit(); local
900 if( init != NULL && limit != NULL && l->stride_is_con() ) {
902 const TypeInt *hi = limit->bottom_type()->isa_int();
H A Dloopnode.hpp118 // trip-counter value, and the limit. The trip-counter value is always of
122 // CountedLoopEndNode also takes in the loop-invariant limit value.
132 // loop-invariant stride and the loop-invariant limit value. CountedLoopNodes
178 Node *limit() const;
258 Node *limit() const { Node *tmp = cmp_node(); return (tmp && tmp->req()==3) ? tmp->in(2) : NULL; } function in class:CountedLoopEndNode
297 inline Node *CountedLoopNode::limit() const { return loopexit() ? loopexit()->limit() : NULL; } function in class:CountedLoopNode
302 // Counted Loop limit node which represents exact final iterator value:
303 // trip_count = (limit - init_trip + stride - 1)/stride
307 // limit chec
311 LoopLimitNode( Compile* C, Node *init, Node *limit, Node *stride ) argument
[all...]
H A Dloopopts.cpp465 // be converted, so we can remove the control flow. We need to limit the
708 // Use same limit as split_if_with_blocks_post
934 if( u->Opcode() == Op_Opaque1 ) break; // Found loop limit, bugfix for 4677003
1762 // if(i <u limit) unsigned compare loop exit
1771 // / if(i < limit) new signed test
1774 // / / if(i <u limit) new cloned unsigned test
1799 Node* limit = NULL; local
1801 limit = cmpu->in(2);
1803 limit = _igvn.makecon(TypeInt::ZERO);
1804 set_ctrl(limit,
[all...]
H A Dnode.cpp70 assert(Compile::current()->unique() < (UINT_MAX - 1), "Node limit exceeded UINT_MAX");
202 assert(_outp == node->_out + node->_outcnt, "limit still correct");
208 // Note that the limit imax, not the pointer i, gets updated with the
211 // This is a limit pointer, with a name like "imax".
227 // This must be a limit pointer, with a name like "imax".
228 assert(_outp == node->_out + node->_outcnt, "apply -= only to a limit (imax)");
250 // Do not require the limit address to be resynched.
252 assert(_outp == _node->_out, "limit still correct");
327 assert( req < (uint)(MaxNodeLimit - NodeLimitFudgeFactor), "Input limit exceeded" );
648 // Trimming to limit allow
1703 uint limit = direction > 0 ? tp->len() : tp->outcnt(); local
[all...]
H A Dnode.hpp147 // This type, if less than 32 bits, could limit the number of possible nodes.
335 // Assign a limit pointer to the reference argument:
345 // Assign a limit pointer to the reference argument:
1187 void operator-=(uint n) // applied to the limit only
1190 bool operator<(DUIterator_Fast& limit) { argument
1192 I_VDUI_ONLY(limit, limit.verify_limit());
1193 return _outp < limit._outp;
1201 // Assign a limit pointer to the reference argument:
1247 bool operator>=(DUIterator_Last& limit) { argument
[all...]
H A Dstringopts.cpp1043 Node* limit = __ CmpI(phi, value); local
1044 Node* limitb = __ Bool(limit, BoolTest::le);
/openjdk7/jdk/src/share/classes/java/awt/
H A DWindow.java3951 private static double limit(double value, double min, double max) { method in class:Window
3976 wx = Window.limit(wx,
3979 wy = Window.limit(wy,
3990 wx = Window.limit(wx,
3994 wy = Window.limit(wy,
/openjdk7/hotspot/src/share/vm/runtime/
H A Dfprofiler.cpp318 int limit; local
323 limit = k->utf8_length();
324 for (i = 0 ; i < limit ; i += 1) {
331 if (limit > 0) {
335 limit = n->utf8_length();
336 for (i = 0 ; i < limit ; i += 1) {
/openjdk7/jdk/src/solaris/native/java/net/
H A Dnet_util_md.c185 int limit = -1; local
207 limit = mid;
215 return limit;
1313 * On Solaris need to limit the suggested value for SO_SNDBUF
1314 * and SO_RCVBUF to the kernel configured limit
1384 * the value when it exceeds the system limit.
1398 /* Exceeded system limit so clamp and retry */

Completed in 727 milliseconds

1234567