Searched refs:bits (Results 101 - 125 of 152) sorted by relevance

1234567

/openjdk7/jdk/src/macosx/native/com/sun/media/sound/
H A DPLATFORM_API_MacOSX_PCM.cpp57 TRACE2(", %ld channels, %ld bits", (long)inDesc->mChannelsPerFrame, (long)inDesc->mBitsPerChannel);
154 int bits = sampleBits[bitIndex]; local
155 if (addDefault && bits == defBits && channels[channelIndex] != defChannels && sampleRate == defSampleRate) {
160 bits, // sample size in bits
165 bits == 8 ? FALSE : TRUE, // signed
166 bits == 8 ? FALSE // little-endian for 8bit
173 defBits, // 16 bits
/openjdk7/hotspot/src/share/vm/utilities/
H A DbitMap.cpp284 // If this has more bits set than dest_map[index], then other is not a
490 idx_t bits = 0; local
496 bits++;
499 return bits;
/openjdk7/jdk/src/share/classes/sun/invoke/util/
H A DWrapper.java109 /** How many bits are in the wrapped value? Returns 0 for OBJECT or VOID. */
576 private static boolean boolValue(byte bits) { argument
577 bits &= 1; // simple 31-bit zero extension
578 return (bits != 0);
/openjdk7/hotspot/src/cpu/sparc/vm/
H A DnativeInst_sparc.cpp940 int bits = *(int*)ia; local
941 assert(is_op3(bits, Assembler::trap_op3, Assembler::arith_op), "bad instruction");
942 illegal_instruction_bits = bits;
958 int bits = *(int*)ia; local
959 assert(is_op3(bits, Assembler::trap_op3, Assembler::arith_op), "bad instruction");
960 ic_miss_trap_bits = bits;
/openjdk7/jdk/src/share/classes/java/util/regex/
H A DPattern.java2429 BitClass bits = new BitClass();
2507 node = range(bits);
2527 private CharProperty bitsOrSingle(BitClass bits, int ch) { argument
2529 Use "single" node instead of bits when dealing with unicode
2553 return bits.add(ch, flags());
2561 private CharProperty range(BitClass bits) { argument
2588 return bitsOrSingle(bits, ch);
2601 return bitsOrSingle(bits, ch);
3263 final boolean[] bits; field in class:Pattern.BitClass
3264 BitClass() { bits
3265 BitClass(boolean[] bits) argument
[all...]
/openjdk7/hotspot/src/share/vm/memory/
H A Duniverse.cpp734 // Neither the high bits nor the low bits of this value is allowed
735 // to look like (respectively) the high or low bits of a real oop.
743 // will take care of the high bits, however many there are.
818 // Unscaled - Use 32-bits oops without encoding when
843 // Use 32-bits oops without encoding and
1011 return "32-bits Oops";
1428 // decide which low-order bits we require to be clear:
1438 // throw away enough low-order bits to make the diff vanish
1442 uintptr_t bits
[all...]
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djcmarker.c150 /* Returns the precision used (0 = 8bits, 1 = 16bits) for baseline checking */
209 length += htbl->bits[i];
215 emit_byte(cinfo, htbl->bits[i]);
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiEventController.cpp47 // bits for standard events
81 // bits for extension events
118 jlong bits = get_bits(); local
121 bits |= mask;
123 bits &= ~mask;
125 set_bits(bits);
710 // As the bits for both standard (jvmtiEvent) and extension
/openjdk7/hotspot/src/share/vm/runtime/
H A Dframe.cpp83 LocationValidType bits = !update_map() ? 0 : map->_location_valid[i]; local
84 _location_valid[i] = bits;
85 // for whichever bits are set, pull in the corresponding map->_location
87 while (bits != 0) {
88 if ((bits & 1) != 0) {
92 bits >>= 1;
1021 // In LP64-land, the high-order bits are valid but unhelpful.
H A Dthread.hpp1083 bool is_ext_suspend_completed(bool called_by_wait, int delay, uint32_t *bits);
1084 bool is_ext_suspend_completed_with_lock(uint32_t *bits) { argument
1090 SuspendRetryDelay, bits);
1099 bool wait_for_ext_suspend_completion(int count, int delay, uint32_t *bits);
1532 // All of these enumerated values are bits. popframe_pending
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_image_proto.h2318 mlib_s32 bits,
3108 mlib_s32 bits);
3139 mlib_s32 bits);
3170 mlib_s32 bits);
3207 mlib_s32 bits);
3274 mlib_s32 bits);
3299 mlib_s32 bits);
3324 mlib_s32 bits);
3355 mlib_s32 bits);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/
H A DEncoder.java637 // TODO check for contents of vocabulary to assign bits
765 * alphabet that results in the encoding of a character in 4 bits
784 * alphabet that results in the encoding of a character in 4 bits
803 * alphabet that results in the encoding of a character in 4 bits
844 // Encode bottom 6 bits of enoding algorithm id
901 // Encode bottom 6 bits of enoding algorithm id
1180 // C.26 an index (first bit '1') with seven '1' bits for an empty string
1224 // C.26 an index (first bit '1') with seven '1' bits for an empty string
1276 // C.26 an index (first bit '1') with seven '1' bits for an empty string
1331 // C.26 an index (first bit '1') with seven '1' bits fo
2003 writeBits(int bits, int v) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DPackageReader.java338 // set some derived archive bits
755 // Compute file lengths before reading any file bits.
769 // %%% Use a big temp file for file bits?
1431 // Now it's time to check flag bits that indicate attributes.
1442 h.flags -= (int)attrBits; // strip attr bits
1443 assert(h.flags == (char)h.flags); // 16 bits only now
1458 long bits = attrBits;
1459 for (int ai = 0; bits != 0; ai++) {
1460 if ((bits & (1L<<ai)) == 0) continue;
1461 bits
[all...]
H A DPackerImpl.java169 // Here's where the bits are collected before getting packed:
424 Package.File bits = readFile(name, in);
444 file = readClass(name, bits.getInputStream());
447 file = bits;
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dvm_version_x86.cpp390 guarantee(_cpuid_info.std_cpuid1_edx.bits.clflush != 0, "clflush is not supported");
392 guarantee(_cpuid_info.std_cpuid1_ebx.bits.clflush_size == 8, "such clflush size is not supported");
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DClassInfoImpl.java640 PropertyGroup(boolean... bits) { argument
642 assert bits.length==SECONDARY_ANNOTATIONS.length;
643 for( int i=0; i<bits.length; i++ ) {
644 if(bits[i])
/openjdk7/jdk/src/windows/native/com/sun/media/sound/
H A DPLATFORM_API_WinOS_DirectSound.cpp606 WORD wValidBitsPerSample; /* bits of precision */
632 int bits,
638 format->Format.wBitsPerSample = (WORD) ((bits + 7) & 0xFFF8);
640 if (channels <= 2 && bits <= 16) {
646 format->Samples.wValidBitsPerSample = bits;
873 ERROR0("DAUDIO_Open: ERROR: wrong signed'ness: with 8 bits, data must be unsigned!\n");
629 createWaveFormat(WAVEFORMATEXTENSIBLE* format, int sampleRate, int channels, int bits, int significantBits) argument
/openjdk7/jdk/src/share/native/sun/awt/image/
H A Dawt_parseImage.c686 int bits=1; local
699 if (bits & (1<<diff)) {
704 bits |= (1<<diff);
726 if (bits == ((1<<hintP->numChans)-1)) {
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dmpi-priv.h231 int s_mp_outlen(int bits, int r); /* output length in bytes */
299 mp_size b; /* R == 2 ** b, also b = # significant bits in N */
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DMemberName.java76 private int flags; // modifier bits; see reflect.Modifier
321 final int bits = Modifier.NATIVE | Modifier.FINAL;
323 if (testFlags(bits | negs, bits) &&
841 * Otherwise a fresh copy of the given member is returned, with modifier bits filled in.
865 * Otherwise a fresh copy of the given member is returned, with modifier bits filled in.
883 * Otherwise a fresh copy of the given member is returned, with modifier bits filled in.
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DAudioFloatConverter.java65 int bits = format.getSampleSizeInBits();
68 stepsize = (bits + 7) / 8;
70 int lsb_bits = bits % 8;
/openjdk7/jdk/src/macosx/classes/apple/laf/
H A DJRSUIConstants.java91 final long bits = Double.doubleToLongBits(doubleValue);
92 return (int)(bits ^ (bits >>> 32));
/openjdk7/jdk/test/demo/zipfs/
H A DZipFSTester.java103 byte[] bits = new byte[12345];
104 rdm.nextBytes(bits);
105 os.write(bits);
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DComponentColorModel.java73 * The number of bits in a color or alpha sample of a pixel value might not
74 * be the same as the number of bits for the corresponding color or alpha
78 * that case, this class assumes that the least significant n bits of a sample
79 * value hold the component value, where n is the number of significant bits
81 * any higher-order bits in a sample value are zero. Thus, sample values
100 * significant bits of the corresponding sample. Thus each component is
102 * n is the number of significant bits for a particular component.
132 * use all the bits of all sample values. Thus all color/alpha components
133 * have 16 bits when using <CODE>DataBuffer.TYPE_SHORT</CODE>, 32 bits whe
267 ComponentColorModel(ColorSpace colorSpace, int[] bits, boolean hasAlpha, boolean isAlphaPremultiplied, int transparency, int transferType) argument
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dconnode.cpp661 // Float's can be converted to doubles with no loss of bits. Hence
686 // Int's can be converted to doubles with no loss of bits. Hence
1058 uintptr_t bits = (uintptr_t) t->is_intptr_t()->get_con(); local
1059 if (bits == 0) return TypePtr::NULL_PTR;
1060 return TypeRawPtr::make((address) bits);
1129 uintptr_t bits = (uintptr_t) t->is_rawptr()->get_con(); local
1130 return TypeX::make(bits);

Completed in 197 milliseconds

1234567