Searched defs:sindex (Results 1 - 4 of 4) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DConvert.java89 * @param sindex The start index from which bytes are converted.
95 public static int utf2chars(byte[] src, int sindex, argument
98 int i = sindex;
100 int limit = sindex + len;
118 * @param sindex The start index from which bytes are converted.
121 public static char[] utf2chars(byte[] src, int sindex, int len) { argument
123 int len1 = utf2chars(src, sindex, dst, 0, len);
139 * @param sindex The start index from which bytes are converted.
142 public static String utf2string(byte[] src, int sindex, int len) { argument
144 int len1 = utf2chars(src, sindex, ds
167 chars2utf(char[] src, int sindex, byte[] dst, int dindex, int len) argument
193 chars2utf(char[] src, int sindex, int len) argument
[all...]
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DPollArrayWrapper.java79 void replaceEntry(PollArrayWrapper source, int sindex, argument
81 target.putDescriptor(tindex, source.getDescriptor(sindex));
82 target.putEventOps(tindex, source.getEventOps(sindex));
/openjdk7/jdk/src/solaris/classes/sun/nio/ch/
H A DPollArrayWrapper.java89 static void replaceEntry(PollArrayWrapper source, int sindex, argument
91 target.putDescriptor(tindex, source.getDescriptor(sindex));
92 target.putEventOps(tindex, source.getEventOps(sindex));
93 target.putReventOps(tindex, source.getReventOps(sindex));
/openjdk7/hotspot/src/share/vm/code/
H A DrelocInfo.cpp668 int sindex = _section; local
669 if (sindex == CodeBuffer::SECT_NONE && _target != NULL
671 sindex = dest->outer()->section_index_of(_target);
672 guarantee(sindex != CodeBuffer::SECT_NONE, "must belong somewhere");
683 if (sindex == CodeBuffer::SECT_NONE) {
691 CodeSection* sect = dest->outer()->code_section(sindex);
695 assert((uint)sindex < (uint)CodeBuffer::SECT_LIMIT, "sanity");
697 p = pack_1_int_to(p, (offset << section_width) | sindex);
714 int sindex = (x & ((1<<section_width)-1)); local
715 address base = binding()->section_start(sindex);
[all...]

Completed in 75 milliseconds