Searched defs:lim (Results 1 - 8 of 8) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/font/
H A DFontRunIterator.java115 public boolean next(int script, int lim) { argument
116 if (pos == lim) {
120 int ch = nextCodePoint(lim);
123 while ((ch = nextCodePoint(lim)) != DONE && (mapper.charToGlyph(ch) & CompositeGlyphMapper.SLOTMASK) == sl);
147 final int nextCodePoint(int lim) { argument
148 if (pos >= lim) {
152 if (ch >= LEAD_START && ch < LEAD_LIMIT && pos < lim) {
/openjdk7/jdk/src/share/classes/java/nio/
H A DMappedByteBuffer.java81 MappedByteBuffer(int mark, int pos, int lim, int cap, // package-private argument
84 super(mark, pos, lim, cap);
88 MappedByteBuffer(int mark, int pos, int lim, int cap) { // package-private argument
89 super(mark, pos, lim, cap);
H A DBuffer.java189 Buffer(int mark, int pos, int lim, int cap) { // package-private argument
193 limit(lim);
/openjdk7/hotspot/src/share/vm/libadt/
H A Dvectset.cpp347 uint lim = ((size<4)?size:4); local
348 for( uint i = 0; i < lim; i++ )
/openjdk7/jdk/src/share/classes/javax/naming/
H A DNameImpl.java714 NameImplEnumerator(Vector v, int start, int lim) { argument
717 limit = lim;
/openjdk7/hotspot/src/share/vm/opto/
H A Dloopnode.cpp931 jlong lim, ini; local
935 lim = limit_t->_hi;
940 lim = init_t->_hi;
944 julong range = lim - ini + stride_p;
H A Dsuperword.cpp2013 // Derive the new pre-loop limit "lim" such that the two constraints:
2014 // (1) lim = lim0 + N (where N is some positive integer < V)
2015 // (2) (e + lim) % V == 0
2023 // lim = lim0 + (V - (e + lim0)) % V
2027 // lim = lim0 + N
2028 // (e - lim) % V == 0
2029 // Solving for lim:
2032 // lim = lim0 + (e - lim0) % V
2036 // lim = lim0 - N
2037 // (e + lim)
2120 Node* lim; local
[all...]
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dmpi.c3673 mp_size lim; local
3677 lim = MP_USED(b) + offset;
3678 if((lim > USED(a)) && (res = s_mp_pad(a, lim)) != MP_OKAY)
3688 lim = USED(b);
3689 for(ib = 0, ia = offset; ib < lim; ib++, ia++) {
3707 for (lim = MP_USED(a); k && (ia < lim); ++ia) {
3713 for (lim = MP_USED(a); carry && (ia < lim);
[all...]

Completed in 147 milliseconds