Searched refs:beg (Results 26 - 50 of 57) sorted by relevance

123

/openjdk9/hotspot/src/share/vm/c1/
H A Dc1_ValueType.hpp224 IntInterval(jint beg, jint end) { argument
225 assert(beg <= end, "illegal interval");
226 _beg = beg;
230 jint beg() const { return _beg; } function in class:IntInterval
H A Dc1_GraphBuilder.hpp278 void connect_to_end(BlockBegin* beg);
/openjdk9/jdk/src/java.base/share/native/libzip/zlib/
H A Dinffast.c82 unsigned char FAR *beg; /* inflate()'s initial strm->next_out */ local
109 beg = out - (start - strm->avail_out);
193 op = (unsigned)(out - beg); /* max distance in output */
H A Ddeflate.c779 * Update the header CRC with the bytes s->pending_buf[beg..s->pending - 1].
781 #define HCRC_UPDATE(beg) \
783 if (s->gzhead->hcrc && s->pending > (beg)) \
784 strm->adler = crc32(strm->adler, s->pending_buf + (beg), \
785 s->pending - (beg)); \
928 ulg beg = s->pending; /* start of bytes to update crc */ local
935 HCRC_UPDATE(beg);
942 beg = 0;
948 HCRC_UPDATE(beg);
955 ulg beg local
977 ulg beg = s->pending; /* start of bytes to update crc */ local
[all...]
/openjdk9/jdk/src/jdk.pack/share/native/common-unpack/
H A Dbytes.h62 bytes slice(size_t beg, size_t end) { argument
64 res.ptr = ptr + beg;
65 res.len = end - beg;
/openjdk9/jdk/test/java/util/BitSet/
H A DImportExport.java117 int beg = rnd.nextInt(10);
118 b2.position(beg);
121 b2.position(beg);
/openjdk9/jdk/src/java.base/share/classes/java/util/
H A DVector.java1018 final int beg = i;
1019 final long[] deathRow = nBits(end - beg);
1021 for (i = beg + 1; i < end; i++)
1023 setBit(deathRow, i - beg);
1028 int w = beg;
1029 for (i = beg; i < end; i++)
1030 if (isClear(deathRow, i - beg))
H A DArrayList.java1545 final int beg = i;
1546 final long[] deathRow = nBits(end - beg);
1548 for (i = beg + 1; i < end; i++)
1550 setBit(deathRow, i - beg);
1555 int w = beg;
1556 for (i = beg; i < end; i++)
1557 if (isClear(deathRow, i - beg))
H A DArrayDeque.java952 * @param beg valid index of first element to be deleted
955 Predicate<? super E> filter, final int beg) {
959 final long[] deathRow = nBits(sub(end, beg, capacity));
961 for (int i = beg + 1, to = (i <= end) ? end : es.length, k = beg;
969 int w = beg;
970 for (int i = beg + 1, to = (i <= end) ? end : es.length, k = beg;
954 bulkRemoveModified( Predicate<? super E> filter, final int beg) argument
/openjdk9/jdk/src/java.base/share/classes/java/util/concurrent/
H A DCopyOnWriteArrayList.java840 final int beg = i;
841 final long[] deathRow = nBits(end - beg);
844 for (i = beg + 1; i < end; i++)
846 setBit(deathRow, i - beg);
853 int w = beg;
854 for (i = beg; i < end; i++)
855 if (isClear(deathRow, i - beg))
H A DArrayBlockingQueue.java1544 * @param beg valid index of first element to be deleted
1547 Predicate<? super E> filter, final int beg) {
1551 final long[] deathRow = nBits(distanceNonEmpty(beg, putIndex));
1553 for (int i = beg + 1, to = (i <= end) ? end : es.length, k = beg;
1561 int w = beg;
1562 for (int i = beg + 1, to = (i <= end) ? end : es.length, k = beg;
1546 bulkRemoveModified( Predicate<? super E> filter, final int beg) argument
H A DLinkedBlockingDeque.java847 Node<E> beg = null, end = null;
853 if (beg == null)
854 beg = end = newNode;
861 if (beg == null)
869 beg.prev = last;
871 first = beg;
873 last.next = beg;
/openjdk9/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/debugger/bsd/
H A DBsdDebuggerLocal.java632 long beg, end;
636 beg = end - t.getStackSize();
641 result[i + 1] = beg;
/openjdk9/jdk/src/java.base/share/native/libjli/
H A Djli_util.h130 /* a copy is made out of beg */
131 void JLI_List_addSubstring(JLI_List l, const char *beg, size_t len);
/openjdk9/hotspot/src/share/vm/gc/parallel/
H A DparMarkBitMap.cpp261 const idx_t* const beg = (const idx_t*)_virtual_space->committed_low_addr(); local
263 for (const idx_t* p = beg; p < end; ++p) {
H A DpsParallelCompact.hpp401 // Fill in the regions covering [beg, end) so that no data moves; i.e., the
402 // destination of region n is simply the start of region n. The argument beg
404 void summarize_dense_prefix(HeapWord* beg, HeapWord* end);
417 void clear_range(HeapWord* beg, HeapWord* end) { argument
418 clear_range(addr_to_region_idx(beg), addr_to_region_idx(end));
1031 // Find the first (left-most) region in the range [beg, end) that has at least
1032 // dead_words of dead space to the left. The argument beg must be the first
1034 static RegionData* dead_wood_limit_region(const RegionData* beg,
1038 // Return a pointer to the first region in the range [beg, end) that is not
1040 static RegionData* first_dead_space_region(const RegionData* beg,
[all...]
H A DpsParallelCompact.cpp546 ParallelCompactData::summarize_dense_prefix(HeapWord* beg, HeapWord* end) argument
548 assert(region_offset(beg) == 0, "not RegionSize aligned");
551 size_t cur_region = addr_to_region_idx(beg);
553 HeapWord* addr = beg;
809 const size_t* const beg = (const size_t*)vspace->committed_low_addr(); local
811 for (const size_t* p = beg; p < end; ++p) {
1236 PSParallelCompact::first_dead_space_region(const RegionData* beg, argument
1241 size_t left = sd.region(beg);
1242 size_t right = end > beg ? sd.region(end) - 1 : left;
1266 PSParallelCompact::dead_wood_limit_region(const RegionData* beg, argument
2379 const rd_t* const beg = sd.addr_to_region_ptr(spc->bottom()); local
2599 skip_live_words(HeapWord* beg, HeapWord* end, size_t count) argument
2707 RegionData* const beg = sd.region(beg_region); local
[all...]
/openjdk9/jdk/src/jdk.rmic/share/classes/sun/tools/java/
H A DClassDefinition.java421 for (int beg = scan-1; beg >= 0; beg--) {
422 char ch = documentation.charAt(beg);
/openjdk9/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/resources/jquery/jszip/dist/
H A Djszip.js5329 var beg, val; // for gzip header write only
5427 beg = s.pending; /* start of bytes to update crc */
5431 if (s.gzhead.hcrc && s.pending > beg) {
5432 strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg);
5435 beg = s.pending;
5443 if (s.gzhead.hcrc && s.pending > beg) {
5444 strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg);
5457 beg
[all...]
/openjdk9/jdk/test/tools/pack200/pack200-verifier/src/xmlkit/
H A DXMLKit.java140 * void clear(int beg=0, int end=size)
538 public void clear(int beg) { argument
539 clear(beg, size);
542 public void clear(int beg, int end) { argument
546 if (beg < 0 || beg > end) {
547 badIndex(beg);
549 if (beg == end) {
554 if (beg == 0
560 clearParts(beg, siz
568 clearParts(int beg, int end) argument
[all...]
/openjdk9/langtools/src/jdk.javadoc/share/classes/com/sun/tools/doclets/internal/toolkit/resources/jquery/jszip/dist/
H A Djszip.js5329 var beg, val; // for gzip header write only
5427 beg = s.pending; /* start of bytes to update crc */
5431 if (s.gzhead.hcrc && s.pending > beg) {
5432 strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg);
5435 beg = s.pending;
5443 if (s.gzhead.hcrc && s.pending > beg) {
5444 strm.adler = crc32(strm.adler, s.pending_buf, s.pending - beg, beg);
5457 beg
[all...]
/openjdk9/jdk/test/java/lang/invoke/
H A DInvokeGenericTest.java292 int beg, int end, Class<?> argType) {
296 Collections.fill(argTypes.subList(beg, end), argType);
291 changeArgTypes(MethodHandle target, int beg, int end, Class<?> argType) argument
/openjdk9/jdk/src/java.base/share/classes/com/sun/java/util/jar/pack/
H A DPackage.java1064 private static boolean isDigitString(String x, int beg, int end) { argument
1065 if (beg == end) return false; // null string
1066 for (int i = beg; i < end; i++) {
/openjdk9/jdk/src/java.base/share/native/libzip/
H A Dzip_util.c523 countCENHeaders(unsigned char *beg, unsigned char *end) argument
527 for (i = 0; i + CENHDR <= end - beg; i += CENSIZE(beg + i))
/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/regexp/joni/
H A DByteCodeMachine.java244 region.beg[0] = msaBegin = sstart - str;
249 region.beg[i] = bsAt(regex.btMemStart, i) ?
259 region.beg[i] = region.end[i] = Region.REGION_NOTPOS;

Completed in 281 milliseconds

123