Searched refs:and (Results 51 - 75 of 138) sorted by relevance

123456

/openjdk10/langtools/test/tools/javac/util/
H A DBitsTest.java2 * Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.
5 * This code is free software; you can redistribute it and/or modify it
145 int[] and = { a[0] & b[0], a[1] & b[1] };
150 assertEquals(64, fromInts(a).andSet (fromInts(b)), fromInts(and));
/openjdk10/hotspot/src/jdk.hotspot.agent/scripts/
H A Dstart-debug-server.bat4 REM Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
7 REM This code is free software; you can redistribute it and/or modify it
H A Dstart-rmiregistry.bat4 REM Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
7 REM This code is free software; you can redistribute it and/or modify it
/openjdk10/jdk/src/java.base/share/classes/com/sun/crypto/provider/
H A DPBES2Parameters.java2 * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved.
5 * This code is free software; you can redistribute it and/or modify it
173 int and;
177 // Extract the KDF and encryption algorithm names
180 (and = pbes2AlgorithmName.indexOf("And", 7 + 1)) > 0) {
181 kdfAlgo = pbes2AlgorithmName.substring(7, and);
182 cipherAlgo = pbes2AlgorithmName.substring(and + 3);
454 * or HmacSHA512, and <encryption> is AES with a keysize suffix.
/openjdk10/jdk/test/sun/security/tools/keytool/
H A Dconsole.sh2 # Copyright (c) 2006, 2014, Oracle and/or its affiliates. All rights reserved.
5 # This code is free software; you can redistribute it and/or modify it
44 JDK 5.0 and later versions. Before running the test, make sure that --
51 by providing \$ALT_PASS. It should be no less than 6 characters and include
65 echo "Define \$J5 and \$JM first"
/openjdk10/make/common/
H A DTextFileProcessing.gmk2 # Copyright (c) 2013, 2014, Oracle and/or its affiliates. All rights reserved.
5 # This code is free software; you can redistribute it and/or modify it
53 # and the targets generated are listed in a variable by that name.
77 # processed first, and replacements will be done on the included fragments as well.
85 $$(error Cannot use both SOURCE_FILES and SOURCE_DIRS (in $1))
128 $$(error No suitable sed separator can be found for $1. Tested /, @, | and !)
142 # If we have a trailing "=>" (i.e. last rule replaces with empty, and is not
157 # and ';' with '/" -e "s/', and adjusting for edge cases.
200 # Note that $1 is space sensitive and mus
[all...]
/openjdk10/make/
H A DDocs.gmk1 # Copyright (c) 1997, 2017, Oracle and/or its affiliates. All rights reserved.
4 # This code is free software; you can redistribute it and/or modify it
47 # module java.se.ee, and "JDK", which covers all of Java SE and also all
118 FULL_COMPANY_NAME := Oracle and/or its affiliates
130 DRAFT_TEXT := This specification is not final and is subject to change. \
136 For further API reference and developer documentation see the \
140 of terms, workarounds, and working code examples.<br> \
142 the US and other countries.<br> \
146 Use is subject to <a href="$(LICENSE_URL)">license terms</a> and th
[all...]
H A DInitSupport.gmk2 # Copyright (c) 2011, 2017, Oracle and/or its affiliates. All rights reserved.
5 # This code is free software; you can redistribute it and/or modify it
43 # loaded. Most of these functions provide parsing and setting up make options
87 $$(info Make sure it is not mistyped, and that you intend to override this variable.)
99 $$(info ALT_ variables are deprecated, and may result in a failed build.)
118 # Check that the CONF_CHECK option is valid and set up handling
129 # Look for a given option in the LOG variable, and if found, set a variable
130 # and remove the option from the LOG variable
155 # If the "nofile" argument is given, act on it and strip it away
158 # If the "cmdline" argument is given, act on it and stri
[all...]
/openjdk10/jdk/test/javax/management/query/
H A DQueryExpStringTest.java2 * Copyright (c) 2003, 2015, Oracle and/or its affiliates. All rights reserved.
5 * This code is free software; you can redistribute it and/or modify it
88 and = Query.and(gt, lt), field in class:QueryExpStringTest
119 between, "(12345678) between (2.5) and (2.5)",
130 and, "((12345678) > (2.5)) and ((12345678) < (2.5))",
227 /* This is very ugly. We might have "(q1) and (q2)" here, or
230 begin with one, we try to parse the query, and if we get an
238 if (skip(ss, ") and ("))
[all...]
/openjdk10/hotspot/src/cpu/aarch64/vm/
H A Daarch64_linkage.S5 # This code is free software; you can redistribute it and/or modify it
24 # -- either Java methods or generated stub -- and to allow JIT-compiled
28 # of the ARM code buffer and patched with a link to the
154 // get return pc in rdi and then push it back
/openjdk10/nashorn/samples/
H A DMain.asm2 * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
4 * Redistribution and use in source and binary forms, with or without
9 * notice, this list of conditions and the following disclaimer.
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.common/src/org/graalvm/compiler/core/common/type/
H A DArithmeticOpTable.java2 * Copyright (c) 2014, 2015, Oracle and/or its affiliates. All rights reserved.
5 * This code is free software; you can redistribute it and/or modify it
73 private final BinaryOp<And> and; field in class:ArithmeticOpTable
134 BinaryOp<And> and = wrapIfNonNull(wrapper::wrapBinaryOp, inner.getAnd());
150 return new ArithmeticOpTable(neg, add, sub, mul, mulHigh, umulHigh, div, rem, not, and, or, xor, shl, shr, ushr, abs, sqrt, zeroExtend, signExtend, narrow, floatConvert);
154 UnaryOp<Not> not, BinaryOp<And> and, BinaryOp<Or> or, BinaryOp<Xor> xor, ShiftOp<Shl> shl, ShiftOp<Shr> shr, ShiftOp<UShr> ushr, UnaryOp<Abs> abs, UnaryOp<Sqrt> sqrt,
165 this.and = and;
181 this.hash = Objects.hash(neg, add, sub, mul, div, rem, not, and, or, xor, shl, shr, ushr, abs, sqrt, zeroExtend, signExtend, narrow);
253 * Describes the bitwise and operatio
153 ArithmeticOpTable(UnaryOp<Neg> neg, BinaryOp<Add> add, BinaryOp<Sub> sub, BinaryOp<Mul> mul, BinaryOp<MulHigh> mulHigh, BinaryOp<UMulHigh> umulHigh, BinaryOp<Div> div, BinaryOp<Rem> rem, UnaryOp<Not> not, BinaryOp<And> and, BinaryOp<Or> or, BinaryOp<Xor> xor, ShiftOp<Shl> shl, ShiftOp<Shr> shr, ShiftOp<UShr> ushr, UnaryOp<Abs> abs, UnaryOp<Sqrt> sqrt, IntegerConvertOp<ZeroExtend> zeroExtend, IntegerConvertOp<SignExtend> signExtend, IntegerConvertOp<Narrow> narrow, FloatConvertOp... floatConvert) argument
[all...]
/openjdk10/langtools/src/jdk.jshell/share/classes/jdk/jshell/
H A DSourceCodeAnalysisImpl.java2 * Copyright (c) 2014, 2016, Oracle and/or its affiliates. All rights reserved.
5 * This code is free software; you can redistribute it and/or modify it
315 .and(IS_INTERFACE.negate())
316 .and(IS_PACKAGE.negate())
317 .and(smartTypeFilter);
338 Predicate<Element> constructorFilter = accessibility.and(IS_CONSTRUCTOR)
339 .and(el -> {
347 filter = filter.and(IS_PACKAGE);
350 filter = filter.and(IS_PACKAGE.or(IS_CLASS).or(IS_INTERFACE));
351 smartFilter = IS_PACKAGE.negate().and(smartTypeFilte
[all...]
/openjdk10/jdk/test/java/util/BitSet/
H A DBSMethods.java2 * Copyright (c) 1998, 2014, Oracle and/or its affiliates. All rights reserved.
5 * This code is free software; you can redistribute it and/or modify it
182 // Set some random bits and remember them
214 // Clear some random bits and remember them
352 // Set some random bits in first set and remember them
357 // Set some random bits in second set and remember them
386 // Set some random bits in first set and remember them
391 // Set more random bits in second set and remember them
397 b3.and(b2);
410 // `and' tha
[all...]
/openjdk10/hotspot/src/os_cpu/linux_x86/vm/
H A Dlinux_x86_64.s2 # Copyright (c) 2004, 2013, Oracle and/or its affiliates. All rights reserved.
5 # This code is free software; you can redistribute it and/or modify it
150 # If 'from' and/or 'to' are aligned on 4- or 2-byte boundaries, we
153 # and stored atomically.
241 # If 'from' and/or 'to' are aligned on 4-byte boundaries, we let
243 # cache line boundaries will still be loaded and stored atomically.
/openjdk10/corba/src/java.corba/share/classes/com/sun/tools/corba/se/idl/constExpr/
H A DExprFactory.java2 * Copyright (c) 1999, 2001, Oracle and/or its affiliates. All rights reserved.
5 * This code is free software; you can redistribute it and/or modify it
45 And and (Expression left, Expression right); method in interface:ExprFactory
H A DDefaultExprFactory.java2 * Copyright (c) 1999, 2001, Oracle and/or its affiliates. All rights reserved.
5 * This code is free software; you can redistribute it and/or modify it
45 public And and (Expression left, Expression right) method in class:DefaultExprFactory
48 } // and
/openjdk10/hotspot/src/os_cpu/solaris_x86/vm/
H A Dsolaris_x86_64.s2 / Copyright (c) 2004, 2013, Oracle and/or its affiliates. All rights reserved.
5 / This code is free software; you can redistribute it and/or modify it
162 / If 'from' and/or 'to' are aligned on 4- or 2-byte boundaries, we
165 / and stored atomically.
251 / If 'from' and/or 'to' are aligned on 4-byte boundaries, we let
253 / cache line boundaries will still be loaded and stored atomically.
/openjdk10/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/regexp/joni/
H A DBitSet.java3 * this software and associated documentation files (the "Software"), to deal in
5 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
6 * of the Software, and to permit persons to whom the Software is furnished to do
9 * The above copyright notice and this permission notice shall be included in all
91 public void and(final BitSet other) { method in class:BitSet
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.word/src/org/graalvm/word/
H A DPointer.java2 * Copyright (c) 2012, 2016, Oracle and/or its affiliates. All rights reserved.
5 * This code is free software; you can redistribute it and/or modify it
32 * and writeObject methods access uncompressed pointers.
48 * that can i.e., processed by the garbage collector and the Pointer does not contain 0.
55 * Reads the memory at address {@code (this + offset)}. Both the base address and offset are in
69 * Reads the memory at address {@code (this + offset)}. Both the base address and offset are in
83 * Reads the memory at address {@code (this + offset)}. Both the base address and offset are in
97 * Reads the memory at address {@code (this + offset)}. Both the base address and offset are in
111 * Reads the memory at address {@code (this + offset)}. Both the base address and offset are in
125 * Reads the memory at address {@code (this + offset)}. Both the base address and offse
955 Pointer and(UnsignedWord val); method in interface:Pointer
958 Pointer and(int val); method in interface:Pointer
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/
H A DConditionalEliminationPhase.java2 * Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
5 * This code is free software; you can redistribute it and/or modify it
542 AndNode and = (AndNode) x;
543 ValueNode andX = and.getX();
544 if (and.getY() == y && maybeMultipleUsages(andX)) {
546 * This 'and' proves something about some of the bits in and.getX().
619 * {@link #getInfoElements(ValueNode)}. It's only safe to use constants and one
623 * @return the pair of the @{link InfoElement} used and the stamp produced for the whole
647 AndNode and
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot/src/org/graalvm/compiler/hotspot/replacements/
H A DMonitorSnippets.java2 * Copyright (c) 2012, 2016, Oracle and/or its affiliates. All rights reserved.
5 * This code is free software; you can redistribute it and/or modify it
136 * Snippets used for implementing the monitorenter and monitorexit instructions.
140 * atomic operations with biased locking and bulk rebiasing</a> by Kenneth Russell and David
170 * and c1_CodePatterns_sparc.cpp.
176 * lock is biased toward a given thread, locking and unlocking can
188 * times were seen when these bits were absent and an arbitrary age
190 * significant fraction of the eden semispaces and were not
195 * biased locking), and fo
[all...]
H A DHashCodeSnippets.java2 * Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
5 * This code is free software; you can redistribute it and/or modify it
68 final Word biasedLock = mark.and(biasedLockMaskInPlace(INJECTED_VMCONFIG));
/openjdk10/hotspot/src/os_cpu/bsd_x86/vm/
H A Dbsd_x86_64.s2 # Copyright (c) 2004, 2013, Oracle and/or its affiliates. All rights reserved.
5 # This code is free software; you can redistribute it and/or modify it
158 # If 'from' and/or 'to' are aligned on 4- or 2-byte boundaries, we
161 # and stored atomically.
249 # If 'from' and/or 'to' are aligned on 4-byte boundaries, we let
251 # cache line boundaries will still be loaded and stored atomically.
/openjdk10/jdk/test/java/math/BigInteger/
H A DSymmetricRangeTests.java2 * Copyright (c) 2013, 2017, Oracle and/or its affiliates. All rights reserved.
5 * This code is free software; you can redistribute it and/or modify it
304 System.out.println("Testing BigInteger.and");
305 check("BigInteger.MIN_VALUE.and(BigInteger.MIN_VALUE)",
306 MIN_VALUE.and(MIN_VALUE), MIN_VALUE);
307 check("BigInteger.MAX_VALUE.and(BigInteger.MAX_VALUE)",
308 MAX_VALUE.and(MAX_VALUE), MAX_VALUE);
309 check("BigInteger.MIN_VALUE.and(BigInteger.MAX_VALUE)",
310 MIN_VALUE.and(MAX_VALUE), BigInteger.ONE);
312 BigInteger actual = MIN_VALUE.and(BigIntege
[all...]

Completed in 378 milliseconds

123456