Searched refs:destination (Results 1 - 25 of 105) sorted by relevance

12345

/openjdk10/jdk/src/java.desktop/share/classes/com/sun/media/sound/
H A DDLSModulator.java31 * a destination. For example a note on velocity
108 int destination; field in class:DLSModulator
121 public static int getDestinationFormat(int destination) { argument
123 if (destination == CONN_DST_GAIN)
125 if (destination == CONN_DST_PITCH)
127 if (destination == CONN_DST_PAN)
130 if (destination == CONN_DST_LFO_FREQUENCY)
132 if (destination == CONN_DST_LFO_STARTDELAY)
135 if (destination == CONN_DST_EG1_ATTACKTIME)
137 if (destination
197 getDestinationName(int destination) argument
317 setDestination(int destination) argument
[all...]
H A DModelConnectionBlock.java32 * to a destination variable.
41 // source1 * source2 * scale -> destination
46 private ModelDestination destination; field in class:ModelConnectionBlock
51 public ModelConnectionBlock(double scale, ModelDestination destination) { argument
53 this.destination = destination;
57 ModelDestination destination) {
62 this.destination = destination;
66 ModelDestination destination) {
56 ModelConnectionBlock(ModelSource source, ModelDestination destination) argument
65 ModelConnectionBlock(ModelSource source, double scale, ModelDestination destination) argument
75 ModelConnectionBlock(ModelSource source, ModelSource control, ModelDestination destination) argument
90 ModelConnectionBlock(ModelSource source, ModelSource control, double scale, ModelDestination destination) argument
110 setDestination(ModelDestination destination) argument
[all...]
H A DModelDestination.java93 private ModelIdentifier destination = DESTINATION_NONE; field in class:ModelDestination
100 destination = id;
104 return destination;
107 public void setIdentifier(ModelIdentifier destination) { argument
108 this.destination = destination;
/openjdk10/hotspot/src/share/vm/aot/
H A DcompiledIC_aot.cpp29 // It is a call to interpreted, if it calls to a stub. Hence, the destination
31 return destination() == _call->plt_c2i_stub();
/openjdk10/jdk/src/jdk.jdi/share/classes/com/sun/tools/jdi/
H A DPrimitiveValueImpl.java99 ValueImpl prepareForAssignmentTo(ValueContainer destination) argument
102 return convertForAssignmentTo(destination);
105 ValueImpl convertForAssignmentTo(ValueContainer destination) argument
111 if (destination.signature().length() > 1) {
115 if ((destination.signature().charAt(0) == 'Z') &&
120 if ((destination.signature().charAt(0) != 'Z') &&
125 if ("void".equals(destination.typeName())) {
130 PrimitiveTypeImpl primitiveType = (PrimitiveTypeImpl)destination.type();
134 destination.typeName());
H A DValueImpl.java40 ValueContainer destination)
46 if (destination.signature().length() == 1) {
51 return ((ValueImpl)value).prepareForAssignmentTo(destination);
63 abstract ValueImpl prepareForAssignmentTo(ValueContainer destination) argument
39 prepareForAssignment(Value value, ValueContainer destination) argument
H A DVoidValueImpl.java54 ValueImpl prepareForAssignmentTo(ValueContainer destination) argument
57 if ("void".equals(destination.typeName())) {
/openjdk10/jdk/src/java.base/share/classes/sun/security/ssl/
H A DOutputRecord.java136 ByteBuffer destination) throws IOException {
156 Ciphertext acquireCiphertext(ByteBuffer destination) throws IOException { argument
217 // destination ByteBuffer's position is updated to reflect the amount
220 CipherBox encCipher, byte contentType, ByteBuffer destination,
225 int dstContent = destination.position();
239 byte[] hash = signer.compute(contentType, destination, false);
248 destination.limit(destination.limit() + hash.length);
249 destination.put(hash);
252 destination
135 encode(ByteBuffer[] sources, int offset, int length, ByteBuffer destination) argument
219 encrypt(Authenticator authenticator, CipherBox encCipher, byte contentType, ByteBuffer destination, int headerOffset, int dstLim, int headerSize, ProtocolVersion protocolVersion, boolean isDTLS) argument
[all...]
H A DSSLSocketInputRecord.java143 // destination.position() is zero.
145 Plaintext decode(InputStream is, ByteBuffer destination) argument
173 plaintext = handleUnknownRecord(is, temporary, destination);
178 plaintext = decodeInputRecord(is, temporary, destination);
192 // Note that destination may be null
194 ByteBuffer destination) throws IOException, BadPaddingException {
213 if (destination == null) {
214 destination = ByteBuffer.allocate(headerSize + contentLen);
215 } // Otherwise, the destination buffer should have enough room.
217 int dstPos = destination
193 decodeInputRecord(InputStream is, byte[] header, ByteBuffer destination) argument
323 handleUnknownRecord(InputStream is, byte[] header, ByteBuffer destination) argument
[all...]
H A DSSLEngineOutputRecord.java139 ByteBuffer destination) throws IOException {
156 int dstLim = destination.limit();
185 int dstPos = destination.position();
188 destination.position(dstContent);
190 int remains = Math.min(fragLen, destination.remaining());
197 destination.put(sources[i]);
208 destination.limit(destination.position());
209 destination.position(dstContent);
215 ", length = " + destination
138 encode(ByteBuffer[] sources, int offset, int length, ByteBuffer destination) argument
247 acquireCiphertext(ByteBuffer destination) argument
[all...]
H A DDTLSOutputRecord.java131 ByteBuffer destination) throws IOException {
164 int dstPos = destination.position();
165 int dstLim = destination.limit();
168 destination.position(dstContent);
170 int remains = Math.min(fragLen, destination.remaining());
177 destination.put(sources[i]);
183 destination.limit(destination.position());
184 destination.position(dstContent);
190 ", length = " + destination
130 encode(ByteBuffer[] sources, int offset, int length, ByteBuffer destination) argument
215 acquireCiphertext(ByteBuffer destination) argument
[all...]
/openjdk10/jdk/src/jdk.incubator.httpclient/share/classes/jdk/incubator/http/internal/hpack/
H A DBinaryRepresentationWriter.java31 boolean write(HeaderTable table, ByteBuffer destination); argument
H A DIndexedWriter.java41 public boolean write(HeaderTable table, ByteBuffer destination) { argument
42 return intWriter.write(destination);
H A DIndexNameValueWriter.java69 public boolean write(HeaderTable table, ByteBuffer destination) { argument
72 if (!intWriter.write(destination)) {
76 if (!intWriter.write(destination) || !nameWriter.write(destination)) {
83 if (!valueWriter.write(destination)) {
H A DISO_8859_1.java50 public void read(ByteBuffer source, Appendable destination) { argument
54 destination.append(c);
57 ("Error appending to the destination", e);
80 public boolean write(ByteBuffer destination) { argument
87 if (destination.hasRemaining()) {
88 destination.put((byte) c);
H A DSizeUpdateWriter.java44 public boolean write(HeaderTable table, ByteBuffer destination) { argument
49 return intWriter.write(destination);
H A DBulkSizeUpdateWriter.java50 public boolean write(HeaderTable table, ByteBuffer destination) { argument
56 if (!writer.write(table, destination)) {
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.sparc/src/org/graalvm/compiler/lir/sparc/
H A DSPARCJumpOp.java45 public SPARCJumpOp(LabelRef destination) { argument
46 super(TYPE, destination);
53 if (!crb.isSuccessorEdge(destination())) {
54 BPCC.emit(masm, Xcc, Always, NOT_ANNUL, PREDICT_TAKEN, destination().label());
62 if (!crb.isSuccessorEdge(destination())) {
65 masm.jmp(destination().label());
/openjdk10/langtools/test/tools/javac/generics/inference/8147493/
H A DT8147493a.java39 <E extends Two<?>, L extends Three<E>> Four<L> f(Class raw, E destination) { argument
40 return g(raw, destination.get());
/openjdk10/langtools/src/jdk.compiler/share/classes/com/sun/tools/sjavac/server/log/
H A DLazyInitFileLog.java40 Path destination = null; field in class:LazyInitFileLog
51 destination = getAvailableDestination();
52 out = err = new PrintWriter(new FileWriter(destination.toFile()), true);
78 return destination;
/openjdk10/jdk/src/java.desktop/share/classes/javax/imageio/
H A DImageReadParam.java44 * {@code SampleModel} of the destination image, either by
60 * being decoded from the stream and the destination
66 * resulting rectangle intersected with the actual valid destination
67 * area to yield the destination area that will be written.
93 * destination bounds. If no destination image has been set, the
94 * destination is defined to have a width of
98 * destination.
100 * <p> Pixels that land, after subsampling, within the destination
107 * destination band
159 protected BufferedImage destination = null; field in class:ImageReadParam
232 setDestination(BufferedImage destination) argument
[all...]
/openjdk10/test/lib/jdk/test/lib/
H A DFileInstaller.java41 * @param args source and destination
78 Path destination = copyTo.resolve(relativePath);
79 if (!destination.toFile().exists()) {
80 Files.createDirectories(destination);
92 Path destination = copyTo.resolve(relativePath);
93 Files.copy(file, destination, StandardCopyOption.COPY_ATTRIBUTES);
/openjdk10/hotspot/src/cpu/x86/vm/
H A DcompiledIC_aot_x86_64.cpp75 address destination = jump->destination(); local
78 assert(destination == (address)-1 || destination == entry,
/openjdk10/hotspot/test/runtime/modules/
H A DCompilerUtils.java47 * {@code <destination>/**}. The destination directory will be created if
55 * creating the destination directory
57 public static boolean compile(Path source, Path destination, String ... options) argument
68 Files.createDirectories(destination);
70 Arrays.asList(destination));
/openjdk10/test/lib/jdk/test/lib/compiler/
H A DCompilerUtils.java47 * {@code <destination>/**}. The destination directory will be created if
56 * creating the destination directory
60 public static boolean compile(Path source, Path destination, String... options) argument
76 Files.createDirectories(destination);
79 Collections.singletonList(destination));

Completed in 218 milliseconds

12345