Searched refs:sd (Results 26 - 50 of 91) sorted by relevance

1234

/openjdk10/jdk/src/jdk.crypto.ucrypto/solaris/classes/com/oracle/security/ucrypto/
H A DUcryptoProvider.java112 sd("AlgorithmParameters", "GCM",
137 private static ServiceDesc sd(String type, String algo, String cn, method in class:UcryptoProvider
143 ProviderService(Provider p, ServiceDesc sd) { argument
144 super(p, sd.getType(), sd.getAlgorithm(), sd.getClassName(),
145 sd.getAliases(), null);
/openjdk10/jdk/src/java.desktop/macosx/classes/sun/java2d/opengl/
H A DCGLSurfaceData.java348 private static native long createCGLContextOnSurface(CGLSurfaceData sd, argument
352 SurfaceData sd = ((SunGraphics2D) g).surfaceData;
353 if ((sd instanceof CGLSurfaceData) == true) {
354 CGLSurfaceData cglsd = (CGLSurfaceData) sd;
362 static native boolean makeCGLContextCurrentOnSurface(CGLSurfaceData sd, argument
366 SurfaceData sd = ((SunGraphics2D) g).surfaceData;
367 if ((ctx != 0L) && ((sd instanceof CGLSurfaceData) == true)) {
368 CGLSurfaceData cglsd = (CGLSurfaceData) sd;
/openjdk10/jdk/src/java.desktop/share/classes/sun/awt/image/
H A DWritableRasterNative.java66 SurfaceData sd,
121 DataBuffer dbn = new DataBufferNative(sd, dataType,
65 createNativeRaster(ColorModel cm, SurfaceData sd, int width, int height) argument
/openjdk10/jdk/src/java.desktop/share/classes/sun/java2d/pipe/
H A DGeneralCompositePipe.java99 SurfaceData sd = sg.getSurfaceData();
100 dstRaster = sd.getRaster(x, y, w, h);
125 sd.getSurfaceType());
126 blit.Blit(resData, sd, AlphaComposite.Src, null,
131 sd.getSurfaceType());
132 blit.MaskBlit(resData, sd, AlphaComposite.Src, null,
/openjdk10/jdk/src/java.base/share/classes/com/sun/java/util/jar/pack/
H A DAttribute.java163 Map<Layout, Attribute> sd = standardDefs;
164 define(sd, ATTR_CONTEXT_CLASS, "Signature", "RSH");
165 define(sd, ATTR_CONTEXT_CLASS, "Synthetic", "");
166 define(sd, ATTR_CONTEXT_CLASS, "Deprecated", "");
167 define(sd, ATTR_CONTEXT_CLASS, "SourceFile", "RUH");
168 define(sd, ATTR_CONTEXT_CLASS, "EnclosingMethod", "RCHRDNH");
169 define(sd, ATTR_CONTEXT_CLASS, "InnerClasses", "NH[RCHRCNHRUNHFH]");
170 define(sd, ATTR_CONTEXT_CLASS, "BootstrapMethods", "NH[RMHNH[KLH]]");
172 define(sd, ATTR_CONTEXT_FIELD, "Signature", "RSH");
173 define(sd, ATTR_CONTEXT_FIEL
[all...]
/openjdk10/jdk/src/java.base/windows/classes/sun/nio/fs/
H A DWindowsFileSystemProvider.java108 WindowsSecurityDescriptor sd = WindowsSecurityDescriptor.fromAttribute(attrs);
114 sd.address());
119 if (sd != null)
120 sd.release();
137 WindowsSecurityDescriptor sd =
144 sd.address(),
150 if (sd != null)
151 sd.release();
222 WindowsSecurityDescriptor sd =
229 sd
[all...]
H A DWindowsAclFileAttributeView.java217 WindowsSecurityDescriptor sd = WindowsSecurityDescriptor.create(acl);
219 SetFileSecurity(path, DACL_SECURITY_INFORMATION, sd.address());
223 sd.release();
H A DWindowsSecurityDescriptor.java347 WindowsSecurityDescriptor sd = NULL_DESCRIPTOR;
350 if (sd != NULL_DESCRIPTOR)
351 sd.release();
356 sd = new WindowsSecurityDescriptor(acl);
362 return sd;
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.nodes/src/org/graalvm/compiler/nodes/calc/
H A DSignedDivNode.java99 SignedDivNode sd = new SignedDivNode(integerSubNode.getX(), forY);
100 sd.stateBefore = this.stateBefore;
101 return sd;
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/code/
H A DScopeDesc.java143 ScopeDesc sd = (ScopeDesc) arg;
145 return (sd.method.equals(method) && (sd.bci == bci));
/openjdk10/jdk/test/javax/crypto/Cipher/
H A DCipherStreamClose.java139 byte[] sd = digest.digest();
146 if (!Arrays.equals(sd, bd)) {
148 "\t Digest: "+DatatypeConverter.printHexBinary(sd));
/openjdk10/jdk/src/java.desktop/unix/classes/sun/java2d/opengl/
H A DGLXGraphicsConfig.java315 SurfaceData sd = vsm.getPrimarySurfaceData();
317 if (sd instanceof GLXVSyncOffScreenSurfaceData) {
319 (GLXVSyncOffScreenSurfaceData)sd;
406 Surface sd = vi.getDestSurface();
407 if (!(sd instanceof AccelSurface) ||
408 ((AccelSurface)sd).getType() != type)
/openjdk10/hotspot/src/share/vm/utilities/
H A DnumberSeq.hpp32 ** x1, x2, x3, ..., xN, and can calculate their avg, max, and sd.
38 ** maximum, avg, sd, davg, and dsd are calculated over all its elements
40 ** of the sequence and calculates avg, max, and sd only over them
77 double sd() const; // the standard deviation of the sequence
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/orb/
H A DORBConfiguratorImpl.java542 CorbaServerRequestDispatcher sd =
544 scr.registerServerRequestDispatcher( sd,
546 scr.registerServerRequestDispatcher( sd,
548 scr.registerServerRequestDispatcher( sd,
550 scr.registerServerRequestDispatcher( sd,
552 scr.registerServerRequestDispatcher( sd,
554 scr.registerServerRequestDispatcher( sd,
556 scr.registerServerRequestDispatcher( sd,
558 scr.registerServerRequestDispatcher( sd,
560 scr.registerServerRequestDispatcher( sd,
[all...]
/openjdk10/hotspot/src/jdk.hotspot.agent/share/classes/sun/jvm/hotspot/ui/classbrowser/
H A DHTMLGenerator.java952 ScopeDesc sd = nmethod.scope_desc_in(pc, endPc);
953 if (sd != null) {
955 buf.append(genSafepointInfo(nmethod, sd));
1025 protected String genSafepointInfo(NMethod nm, ScopeDesc sd) { argument
1031 genScope(buf, tabs, sd);
1037 genScObjInfo(buf, tabs, sd);
1043 protected void genScope(Formatter buf, Formatter tabs, ScopeDesc sd) { argument
1044 if (sd == null) {
1048 genScope(buf, tabs, sd.sender());
1051 Method m = sd
1088 genScObjInfo(Formatter buf, Formatter tabs, ScopeDesc sd) argument
1306 scopeValueAsString(ScopeDesc sd, ScopeValue sv) argument
1348 genHTMLForScopeValues(ScopeDesc sd, boolean locals, List values) argument
1383 genHTMLForLocals(ScopeDesc sd, List locals) argument
1387 genHTMLForExpressions(ScopeDesc sd, List expressions) argument
1391 genHTMLForMonitors(ScopeDesc sd, List monitors) argument
[all...]
/openjdk10/jdk/src/java.desktop/share/native/liblcms/
H A Dcmscgats.c1787 SAVESTREAM sd; local
1791 memset(&sd, 0, sizeof(sd));
1793 sd.stream = fopen(cFileName, "wt");
1794 if (!sd.stream) return FALSE;
1799 WriteHeader(it8, &sd);
1800 WriteDataFormat(&sd, it8);
1801 WriteData(&sd, it8);
1804 if (fclose(sd.stream) != 0) return FALSE;
1813 SAVESTREAM sd; local
[all...]
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/activation/
H A DRepositoryImpl.java97 private String printServerDef( ServerDef sd )
99 return "ServerDef[applicationName=" + sd.applicationName +
100 " serverName=" + sd.serverName +
101 " serverClassPath=" + sd.serverClassPath +
102 " serverArgs=" + sd. serverArgs +
103 " serverVmArgs=" + sd.serverVmArgs +
/openjdk10/hotspot/src/share/vm/runtime/
H A DsimpleThresholdPolicy.cpp191 for (ScopeDesc* sd = trap_scope;; sd = sd->sender()) {
193 methodHandle mh(sd->method());
196 MethodData* mdo = sd->method()->method_data();
200 if (sd->is_top()) break;
/openjdk10/hotspot/src/share/vm/code/
H A Dnmethod.cpp2165 for (ScopeDesc* sd = new ScopeDesc(this, pd->scope_decode_offset(),
2168 !sd->is_top(); sd = sd->sender()) {
2169 sd->verify();
2338 ScopeDesc* sd = scope_desc_at(p->real_pc(this)); local
2339 while (sd != NULL) {
2340 sd->print_on(tty, p);
2341 sd = sd
2648 ScopeDesc* sd = scope_desc_in(begin, end); local
[all...]
/openjdk10/hotspot/src/share/vm/gc/parallel/
H A DpsCompactionManager.inline.hpp63 const ParallelCompactData& sd = PSParallelCompact::summary_data(); local
64 ParallelCompactData::RegionData* const region_ptr = sd.region(index);
/openjdk10/jaxp/test/javax/xml/jaxp/unittest/stream/EventsTest/
H A DIssue41Test.java79 StartDocument sd = f.createStartDocument();
80 writeAsEncodedUnicode(sd);
/openjdk10/jdk/test/java/awt/Choice/ChoicePopupLocation/
H A DChoicePopupLocation.java53 for (GraphicsDevice sd : sds) {
54 GraphicsConfiguration gc = sd.getDefaultConfiguration();
/openjdk10/jdk/test/java/awt/PopupMenu/
H A DPopupMenuLocation.java56 for (GraphicsDevice sd : sds) {
57 GraphicsConfiguration gc = sd.getDefaultConfiguration();
/openjdk10/jdk/test/javax/swing/plaf/basic/BasicComboPopup/JComboBoxPopupLocation/
H A DJComboBoxPopupLocation.java78 for (final GraphicsDevice sd : sds) {
79 GraphicsConfiguration gc = sd.getDefaultConfiguration();
/openjdk10/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DSoftReferenceGrammarPool.java338 final XMLSchemaDescription sd = (XMLSchemaDescription) desc;
339 final String targetNamespace = sd.getTargetNamespace();
340 final String expandedSystemId = sd.getExpandedSystemId();

Completed in 323 milliseconds

1234