Searched refs:input (Results 126 - 150 of 810) sorted by relevance

1234567891011>>

/openjdk10/jdk/src/java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/transforms/implementations/
H A DTransformBase64Decode.java53 * The base64 Transform element has no content. The input
58 * <p>This transform requires an octet stream for input.
60 * given as input, then it is converted to an octet stream by
91 * @param input
99 XMLSignatureInput input, Transform transformObject
101 return enginePerformTransform(input, null, transformObject);
105 XMLSignatureInput input, OutputStream os, Transform transformObject
108 if (input.isElement()) {
109 Node el = input.getSubNode();
110 if (input
98 enginePerformTransform( XMLSignatureInput input, Transform transformObject ) argument
104 enginePerformTransform( XMLSignatureInput input, OutputStream os, Transform transformObject ) argument
[all...]
/openjdk10/jdk/test/java/lang/Math/
H A DWorstCaseTests.java126 private static int testExpCase(double input, double expected) { argument
129 failures += Tests.testBounds("Math.exp", input, Math.exp(input), expected, out);
130 failures += Tests.testBounds("StrictMath.exp", input, StrictMath.exp(input), expected, out);
158 private static int testLogCase(double input, double expected) { argument
161 failures += Tests.testBounds("Math.log", input, Math.log(input), expected, out);
162 failures += Tests.testBounds("StrictMath.log", input, StrictMath.log(input), expecte
191 testSinCase(double input, double expected) argument
223 testAsinCase(double input, double expected) argument
256 testCosCase(double input, double expected) argument
280 testAcosCase(double input, double expected) argument
309 testTanCase(double input, double expected) argument
341 testAtanCase(double input, double expected) argument
367 testPow2Case(double input, double expected) argument
400 testSinhCase(double input, double expected) argument
428 testCoshCase(double input, double expected) argument
[all...]
/openjdk10/common/bin/
H A Dunshuffle_patch.sh32 echo " <input_patch> is the input patch file, that needs shuffling/unshuffling"
90 # Check given input/output files
91 input="$2"
92 if [ "x$input" = "x-" ] ; then
93 input="/dev/stdin"
96 if [ ! -f $input -a "x$input" != "x/dev/stdin" ] ; then
97 echo "ERROR: Cannot find input patch file: $input" >&2
202 done < "$input"
[all...]
/openjdk10/jdk/src/java.base/share/classes/sun/text/normalizer/
H A DTrie.java103 * @param inputStream ICU data file input stream which contains the
107 * @throws IOException thrown when input stream does not have the
113 DataInputStream input = new DataInputStream(inputStream);
115 int signature = input.readInt();
116 m_options_ = input.readInt();
129 m_dataOffset_ = input.readInt();
130 m_dataLength_ = input.readInt();
145 * Shift size for shifting right the input index. 1..9
162 * Mask for getting the lower bits from the input index.
284 * @param inputStream input strea
[all...]
/openjdk10/jdk/src/java.xml.crypto/share/classes/org/jcp/xml/dsig/internal/
H A DDigesterOutputStream.java41 * objects as input, rather than
43 * It also optionally caches the input bytes.
69 * @param buffer if true, caches the input bytes
79 public void write(int input) { argument
81 bos.write(input);
83 md.update((byte)input);
87 public void write(byte[] input, int offset, int len) { argument
89 bos.write(input, offset, len);
92 log.log(java.util.logging.Level.FINE, "Pre-digested input:");
95 sb.append((char)input[
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir.amd64/src/org/graalvm/compiler/lir/amd64/
H A DAMD64Move.java87 @Use({REG, STACK}) protected AllocatableValue input; field in class:AMD64Move.MoveToRegOp
89 public MoveToRegOp(AMD64Kind moveKind, AllocatableValue result, AllocatableValue input) { argument
92 this.input = input;
97 return input;
111 @Use({REG, HINT}) protected AllocatableValue input; field in class:AMD64Move.MoveFromRegOp
113 public MoveFromRegOp(AMD64Kind moveKind, AllocatableValue result, AllocatableValue input) { argument
116 this.input = input;
121 return input;
135 private final JavaConstant input; field in class:AMD64Move.MoveFromConstOp
137 MoveFromConstOp(AllocatableValue result, JavaConstant input) argument
169 @Use({STACK, HINT}) protected AllocatableValue input; field in class:AMD64Move.AMD64StackMove
174 AMD64StackMove(AllocatableValue result, AllocatableValue input, Register scratch, AllocatableValue backupSlot) argument
263 @Use({STACK, HINT}) protected AllocatableValue input; field in class:AMD64Move.AMD64PushPopStackMove
266 AMD64PushPopStackMove(OperandSize size, AllocatableValue result, AllocatableValue input) argument
501 move(CompilationResultBuilder crb, AMD64MacroAssembler masm, Value result, Value input) argument
505 move(AMD64Kind moveKind, CompilationResultBuilder crb, AMD64MacroAssembler masm, Value result, Value input) argument
533 reg2reg(AMD64Kind kind, AMD64MacroAssembler masm, Value result, Value input) argument
557 reg2stack(AMD64Kind kind, CompilationResultBuilder crb, AMD64MacroAssembler masm, Value result, Register input) argument
583 stack2reg(AMD64Kind kind, CompilationResultBuilder crb, AMD64MacroAssembler masm, Register result, Value input) argument
609 const2reg(CompilationResultBuilder crb, AMD64MacroAssembler masm, Register result, JavaConstant input) argument
672 canMoveConst2Stack(JavaConstant input) argument
694 const2stack(CompilationResultBuilder crb, AMD64MacroAssembler masm, Value result, JavaConstant input) argument
[all...]
/openjdk10/jdk/src/java.base/share/classes/javax/crypto/
H A DCipherSpi.java60 * set of operations) to be performed on the given input, to produce some
265 * or <code>doFinal</code> operation, given the input length
275 * @param inputLen the input length (in bytes)
326 * derived from the input parameters, and there are no reasonable
378 * derived from the input parameters, and there are no reasonable
434 * derived from the input parameters, and there are no reasonable
475 * <p>The first <code>inputLen</code> bytes in the <code>input</code>
479 * @param input the input buffer
480 * @param inputOffset the offset in <code>input</cod
488 engineUpdate(byte[] input, int inputOffset, int inputLen) argument
517 engineUpdate(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
552 engineUpdate(ByteBuffer input, ByteBuffer output) argument
609 engineDoFinal(byte[] input, int inputOffset, int inputLen) argument
666 engineDoFinal(byte[] input, int inputOffset, int inputLen, byte[] output, int outputOffset) argument
727 engineDoFinal(ByteBuffer input, ByteBuffer output) argument
744 bufferCrypt(ByteBuffer input, ByteBuffer output, boolean isUpdate) argument
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.amd64/src/org/graalvm/compiler/hotspot/amd64/
H A DAMD64HotSpotMove.java60 private final HotSpotObjectConstant input; field in class:AMD64HotSpotMove.HotSpotLoadObjectConstantOp
62 public HotSpotLoadObjectConstantOp(AllocatableValue result, HotSpotObjectConstant input) { argument
65 this.input = input;
73 boolean compressed = input.isCompressed();
75 crb.recordInlineDataInCode(input);
92 AMD64Address address = (AMD64Address) crb.recordDataReferenceInCode(input, compressed ? 4 : 8);
106 return input;
139 private final HotSpotMetaspaceConstant input; field in class:AMD64HotSpotMove.HotSpotLoadMetaspaceConstantOp
141 public HotSpotLoadMetaspaceConstantOp(AllocatableValue result, HotSpotMetaspaceConstant input) { argument
190 @Use({REG}) protected AllocatableValue input; field in class:AMD64HotSpotMove.CompressPointer
193 CompressPointer(AllocatableValue result, AllocatableValue input, AllocatableValue baseRegister, CompressEncoding encoding, boolean nonNull) argument
229 @Use({REG}) protected AllocatableValue input; field in class:AMD64HotSpotMove.UncompressPointer
232 UncompressPointer(AllocatableValue result, AllocatableValue input, AllocatableValue baseRegister, CompressEncoding encoding, boolean nonNull) argument
[all...]
/openjdk10/jaxp/test/javax/xml/jaxp/unittest/util/
H A DBOMInputStream.java35 public static InputStream createStream(String charset, InputStream input) { argument
38 byte[] content = read(input).getBytes(charset);
51 private static String read(InputStream input) argument
55 InputStreamReader r = new InputStreamReader(new BufferedInputStream(input));
64 input.close();
/openjdk10/jdk/src/java.base/share/classes/java/security/
H A DMessageDigest.java320 * @param input the byte with which to update the digest.
322 public void update(byte input) { argument
323 engineUpdate(input);
331 * @param input the array of bytes.
338 public void update(byte[] input, int offset, int len) { argument
339 if (input == null) {
340 throw new IllegalArgumentException("No input buffer given");
342 if (input.length - offset < len) {
345 engineUpdate(input, offset, len);
352 * @param input th
354 update(byte[] input) argument
369 update(ByteBuffer input) argument
429 digest(byte[] input) argument
608 engineUpdate(byte input) argument
612 engineUpdate(byte[] input, int offset, int len) argument
616 engineUpdate(ByteBuffer input) argument
[all...]
/openjdk10/jdk/src/java.xml.crypto/share/classes/com/sun/org/apache/xml/internal/security/transforms/
H A DTransformSpi.java46 * @param input {@link XMLSignatureInput} as the input of transformation
58 XMLSignatureInput input, OutputStream os, Transform transformObject
71 * @param input {@link XMLSignatureInput} as the input of transformation
82 XMLSignatureInput input, Transform transformObject
85 return enginePerformTransform(input, null, transformObject);
90 * @param input {@link XMLSignatureInput} as the input of transformation
100 XMLSignatureInput input
57 enginePerformTransform( XMLSignatureInput input, OutputStream os, Transform transformObject ) argument
81 enginePerformTransform( XMLSignatureInput input, Transform transformObject ) argument
[all...]
/openjdk10/jdk/test/sun/java2d/marlin/
H A DCeilAndFloorTests.java41 public static int test(String testName, float input, argument
45 "\tFor input " + input + "\t(" + toHexString(input) + ")\n" +
54 public static int test_skip_0(String testName, float input, argument
62 "\tFor input " + input + "\t(" + toHexString(input) + ")\n" +
71 private static int testCeilCase(float input, float expected) { argument
74 failures += test("FloatMath.ceil_f", input, FloatMat
81 testFloorCase(float input, float expected) argument
[all...]
/openjdk10/jdk/test/tools/jlink/
H A DResourceDuplicateCheckTest.java53 ResourcePoolManager input = new ResourcePoolManager();
55 input.add(ResourcePoolEntryFactory.create("/java.base/module-info.class",
59 input.add(newInMemoryImageFile("/com.acme/bin/myexec",
61 input.add(newInMemoryImageFile("/com.foo/bin/myexec",
66 writer.storeFiles(input.resourcePool());
/openjdk10/langtools/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/taglets/
H A DThrowsTaglet.java66 public void inherit(DocFinder.Input input, DocFinder.Output output) { argument
67 Utils utils = input.utils;
69 CommentHelper ch = utils.getCommentHelper(input.element);
70 if (input.tagId == null) {
71 exception = ch.getException(utils.configuration, input.docTreeInfo.docTree);
72 input.tagId = exception == null
73 ? ch.getExceptionName(input.docTreeInfo.docTree).getSignature()
76 TypeElement element = input.utils.findClass(input.element, input
[all...]
H A DReturnTaglet.java64 public void inherit(DocFinder.Input input, DocFinder.Output output) { argument
65 List<? extends DocTree> tags = input.utils.getBlockTags(input.element, DocTree.Kind.RETURN);
66 CommentHelper ch = input.utils.getCommentHelper(input.element);
68 output.holder = input.element;
70 output.inlineTags = input.isFirstSentence
71 ? ch.getFirstSentenceTrees(input.utils.configuration, output.holderTag)
72 : ch.getDescription(input.utils.configuration, output.holderTag);
107 Input input
[all...]
/openjdk10/jdk/src/java.base/share/classes/sun/security/ssl/
H A DHandshakeHash.java103 // Cache for input record handshake hash computation
114 void reserve(ByteBuffer input) { argument
115 if (input.hasArray()) {
116 reserve.write(input.array(),
117 input.position() + input.arrayOffset(), input.remaining());
119 int inPos = input.position();
120 byte[] holder = new byte[input.remaining()];
121 input
139 update(ByteBuffer input) argument
[all...]
H A DDHClientKeyExchange.java75 DHClientKeyExchange(HandshakeInStream input) throws IOException { argument
76 if (input.available() >= 2) {
77 dh_Yc = input.getBytes16();
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.replacements.amd64/src/org/graalvm/compiler/replacements/amd64/
H A DAMD64ConvertSnippets.java59 * @param input the float being converted
63 public static int f2i(float input, int result) { argument
65 if (Float.isNaN(input)) {
66 // input is NaN -> return 0
68 } else if (input > 0.0f) {
69 // input is > 0 -> return max int
84 * @param input the float being converted
88 public static long f2l(float input, long result) { argument
90 if (Float.isNaN(input)) {
91 // input i
113 d2i(double input, int result) argument
138 d2l(double input, long result) argument
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.jtt/src/org/graalvm/compiler/jtt/threads/
H A DThreadLocal03.java39 t.input = 10 + j;
53 int input; field in class:ThreadLocal03.TThread
58 local.set(input + 5);
/openjdk10/hotspot/test/compiler/codegen/aes/
H A DTestAESEncode.java42 int tempSize = cipher.update(input, encInputOffset, (msgSize - lastChunkSize), encode, encOutputOffset);
43 cipher.doFinal(input, (encInputOffset + msgSize - lastChunkSize), lastChunkSize, encode, (encOutputOffset + tempSize));
45 cipher.doFinal(input, encInputOffset, msgSize, encode, encOutputOffset);
/openjdk10/hotspot/test/runtime/SharedArchiveFile/
H A DSharedSymbolTableBucketSize.java57 // Invalid SharedSymbolTableBucketSize input
58 String input[] = {"-XX:SharedSymbolTableBucketSize=-1",
60 for (int i = 0; i < input.length; i++) {
61 CDSTestUtils.createArchive(input[i])
/openjdk10/jdk/src/java.desktop/share/classes/com/sun/imageio/spi/
H A DInputStreamImageInputStreamSpi.java61 public ImageInputStream createInputStreamInstance(Object input, argument
65 if (input instanceof InputStream) {
66 InputStream is = (InputStream)input;
H A DRAFImageInputStreamSpi.java51 public ImageInputStream createInputStreamInstance(Object input, argument
54 if (input instanceof RandomAccessFile) {
56 return new FileImageInputStream((RandomAccessFile)input);
62 ("input not a RandomAccessFile!");
/openjdk10/jdk/test/java/time/tck/java/time/serial/
H A DTCKZoneIdSerialization.java130 public void test_deserialization_lenient_offsetNotAllowed_noPrefix(String input, String resolvedId) throws Exception { argument
131 ZoneId deserialized = deserialize(input);
132 assertEquals(deserialized, ZoneId.of(input));
137 public void test_deserialization_lenient_offsetNotAllowed_prefixUTC(String input, String resolvedId, String offsetId) throws Exception { argument
138 ZoneId deserialized = deserialize("UTC" + input);
139 assertEquals(deserialized, ZoneId.of("UTC" + input));
144 public void test_deserialization_lenient_offsetNotAllowed_prefixGMT(String input, String resolvedId, String offsetId) throws Exception { argument
145 ZoneId deserialized = deserialize("GMT" + input);
146 assertEquals(deserialized, ZoneId.of("GMT" + input));
151 public void test_deserialization_lenient_offsetNotAllowed_prefixUT(String input, Strin argument
[all...]
/openjdk10/jdk/test/sun/security/krb5/canonicalize/
H A DTest.java60 static void check(String input, String output) throws Exception { argument
61 System.out.println(input + " -> " + output);
62 PrincipalName pn = new PrincipalName("host/"+input,

Completed in 288 milliseconds

1234567891011>>