Searched refs:word (Results 26 - 50 of 59) sorted by relevance

123

/openjdk7/hotspot/src/share/vm/utilities/
H A DbitMap.cpp123 // The range includes at least one full word.
142 // The range includes at least one full word.
163 // The range includes at least one full word.
178 // The range includes at least one full word.
233 // The range includes at least one full word.
267 // The range includes at least one full word.
420 bm_word_t* word = map(); local
423 if (*word != (bm_word_t) AllBits) return false;
424 word++;
426 return rest == 0 || (*word | ~right_n_bit
431 bm_word_t* word = map(); local
[all...]
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DIcons.java205 int word = wordArray[i];
207 bytes[--inx] = (byte)(word & 0xff);
208 word = word >>> 8;
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DMethodTypeForm.java205 private static char unpack(long packed, int word) { // word==0 => return a, ==3 => return d argument
206 assert(word <= 3);
207 return (char)(packed >> ((3-word) * 16));
/openjdk7/hotspot/test/
H A DMakefile75 ifeq ($(word 1, $(PROCESSOR_IDENTIFIER)),ia64)
78 ifeq ($(word 1, $(PROCESSOR_IDENTIFIER)),AMD64)
81 ifeq ($(word 1, $(PROCESSOR_IDENTIFIER)),EM64T)
/openjdk7/hotspot/src/os_cpu/solaris_x86/vm/
H A Dsolaris_x86_64.s116 3: testq $2,%r8 / check for trailing word
118 movw 8(%rax),%si / copy trailing word
145 subq $1,%r8 / adjust for possible trailing word
146 1: testq $2,%r8 / check for trailing word
148 movw -2(%rdi,%r8,1),%cx / copy trailing word
194 movq %rdx,%r8 / word count
216 3: testq $1,%r8 / check for trailing word
218 movw -2(%rdi,%r8,2),%si / copy trailing word
236 testq $1,%r8 / check for trailing word
238 movw -2(%rdi,%r8,2),%cx / copy trailing word
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/algorithm/
H A DUUIDEncodingAlgorithm.java53 public void word(int start, int end) {
H A DShortEncodingAlgorithm.java91 public void word(int start, int end) {
H A DBooleanEncodingAlgorithm.java155 public void word(int start, int end) {
H A DDoubleEncodingAlgorithm.java85 public void word(int start, int end) {
H A DFloatEncodingAlgorithm.java85 public void word(int start, int end) {
H A DIntEncodingAlgorithm.java86 public void word(int start, int end) {
H A DLongEncodingAlgorithm.java85 public void word(int start, int end) {
/openjdk7/langtools/test/
H A DMakefile48 ifeq ($(word 1, $(PROCESSOR_IDENTIFIER)),ia64)
51 ifeq ($(word 1, $(PROCESSOR_IDENTIFIER)),AMD64)
54 ifeq ($(word 1, $(PROCESSOR_IDENTIFIER)),EM64T)
/openjdk7/hotspot/src/share/vm/opto/
H A Dmacro.hpp103 Node* opt_bits_test(Node* ctrl, Node* region, int edge, Node* word, int mask, int bits, bool return_fast_path = false);
/openjdk7/hotspot/src/os_cpu/bsd_x86/vm/
H A Dbsd_x86_64.s114 3: testq $2,%r8 # check for trailing word
116 movw 8(%rax),%si # copy trailing word
143 subq $1,%r8 # adjust for possible trailing word
144 1: testq $2,%r8 # check for trailing word
146 movw -2(%rdi,%r8,1),%cx # copy trailing word
194 movq %rdx,%r8 # word count
216 3: testq $1,%r8 # check for trailing word
218 movw -2(%rdi,%r8,2),%si # copy trailing word
236 testq $1,%r8 # check for trailing word
238 movw -2(%rdi,%r8,2),%cx # copy trailing word
[all...]
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/
H A Dlinux_x86_64.s106 3: testq $2,%r8 # check for trailing word
108 movw 8(%rax),%si # copy trailing word
135 subq $1,%r8 # adjust for possible trailing word
136 1: testq $2,%r8 # check for trailing word
138 movw -2(%rdi,%r8,1),%cx # copy trailing word
186 movq %rdx,%r8 # word count
208 3: testq $1,%r8 # check for trailing word
210 movw -2(%rdi,%r8,2),%si # copy trailing word
228 testq $1,%r8 # check for trailing word
230 movw -2(%rdi,%r8,2),%cx # copy trailing word
[all...]
/openjdk7/hotspot/src/share/vm/adlc/
H A Dformsopt.cpp276 // Collect all the registers in this register-word. One bit per register.
278 int word = 0; local
283 word |= (1 << (rnum & 31));
289 word |= (1 << i);
292 return word;
/openjdk7/jdk/src/share/classes/com/sun/jmx/remote/security/
H A DMBeanServerFileAccessController.java526 throw syntax("Expected word at end of line");
530 String word = s.substring(start, i);
532 return word;
/openjdk7/hotspot/src/os_cpu/windows_x86/vm/
H A DorderAccess_windows_x86.inline.hpp114 xchg ax, word ptr [edx];
175 xchg ax, word ptr [edx];
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/api/impl/
H A DNameUtil.java174 * Classify a character into 5 categories that determine the word break.
191 * character of each word.
211 // Find next break and collect word
428 for (String word : words)
429 reservedKeywords.add(word);
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dinflate.c409 # define CRC2(check, word) \
411 hbuf[0] = (unsigned char)(word); \
412 hbuf[1] = (unsigned char)((word) >> 8); \
416 # define CRC4(check, word) \
418 hbuf[0] = (unsigned char)(word); \
419 hbuf[1] = (unsigned char)((word) >> 8); \
420 hbuf[2] = (unsigned char)((word) >> 16); \
421 hbuf[3] = (unsigned char)((word) >> 24); \
/openjdk7/jdk/make/common/shared/
H A DDefs-windows.gmk109 $(if $(word 2,$1),$(shell $(CYGPATH_CMD) $1 2> $(DEV_NULL)),$(call MixedPath,$(realpath $(subst ",,$1))))
236 ifneq ($(word 1,$(_program_files32)),$(_program_files32))
240 ifneq ($(word 1,$(_program_files)),$(_program_files))
290 ifneq ($(word 2,$(WINDOWSSDKDIR)),)
305 ifneq ($(word 2,$(VS100COMNTOOLS)),)
H A DDefs.gmk65 # Checks an ALT value for spaces (should be one word),
68 $(if $(word 2,$($1)),$(warning "WARNING: Value of $1 contains a space: '$($1)', check or set ALT_$1")Check_ALT_$1,$($1))
142 $(word $1,$(subst ., ,$(subst -, ,$2)))
/openjdk7/corba/make/common/shared/
H A DDefs-windows.gmk197 ifneq ($(word 1,$(SHORTPROGRAMFILES)),$(SHORTPROGRAMFILES))
/openjdk7/jdk/src/share/classes/sun/tools/jstat/
H A DParser.java222 * determine if the given word is a reserved key word
224 private boolean isReservedWord(String word) { argument
225 return reservedWords.contains(word);
229 * determine if the give work is a reserved key word

Completed in 158 milliseconds

123