/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/ |
H A D | jdmaster.c | 12 * This file contains master control logic for the JPEG decompressor. 84 * Also note that it may be called before the master module is initialized! 89 /* Do computations that are needed before master selection phase */ 294 my_master_ptr master = (my_master_ptr) cinfo->master; local 310 master->pass_number = 0; 311 master->using_merged_upsample = use_merged_upsample(cinfo); 314 master->quantizer_1pass = NULL; 315 master->quantizer_2pass = NULL; 342 master 444 my_master_ptr master = (my_master_ptr) cinfo->master; local 504 my_master_ptr master = (my_master_ptr) cinfo->master; local 521 my_master_ptr master = (my_master_ptr) cinfo->master; local 549 my_master_ptr master; local [all...] |
H A D | jcmaster.c | 12 * This file contains master control logic for the JPEG compressor. 51 /* Do computations that are needed before master selection phase */ 279 my_master_ptr master = (my_master_ptr) cinfo->master; local 280 const jpeg_scan_info * scanptr = cinfo->scan_info + master->scan_number; 407 my_master_ptr master = (my_master_ptr) cinfo->master; local 409 switch (master->pass_type) { 424 (master->total_passes > 1 ? 429 master 509 my_master_ptr master = (my_master_ptr) cinfo->master; local 549 my_master_ptr master; local [all...] |
H A D | jcapistd.c | 53 /* Perform master selection of active modules */ 56 (*cinfo->master->prepare_for_pass) (cinfo); 98 /* Give master control module another chance if this is first call to 103 if (cinfo->master->call_pass_startup) 104 (*cinfo->master->pass_startup) (cinfo); 143 /* Give master control module another chance if this is first call to 148 if (cinfo->master->call_pass_startup) 149 (*cinfo->master->pass_startup) (cinfo);
|
H A D | jdapistd.c | 45 /* First call: initialize master control, select active modules */ 103 (*cinfo->master->prepare_for_output_pass) (cinfo); 108 while (cinfo->master->is_dummy_pass) { 127 (*cinfo->master->finish_output_pass) (cinfo); 128 (*cinfo->master->prepare_for_output_pass) (cinfo); 263 (*cinfo->master->finish_output_pass) (cinfo);
|
H A D | jcapimin.c | 46 /* For debugging purposes, we zero the whole master structure. 160 (*cinfo->master->finish_pass) (cinfo); 164 while (! cinfo->master->is_last_pass) { 165 (*cinfo->master->prepare_for_pass) (cinfo); 178 (*cinfo->master->finish_pass) (cinfo);
|
H A D | jdapimin.c | 46 /* For debugging purposes, we zero the whole master structure. 380 (*cinfo->master->finish_output_pass) (cinfo);
|
H A D | jpeglib.h | 243 /* Common fields between JPEG compression and decompression master structs. */ 258 jpeg_common_fields; /* Fields common to both master struct types */ 399 struct jpeg_comp_master * master; member in struct:jpeg_compress_struct 623 struct jpeg_decomp_master * master; member in struct:jpeg_decompress_struct 752 #define JPOOL_PERMANENT 0 /* lasts until master record is destroyed */
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/ |
H A D | Pool.java | 151 private final Tube master; field in class:Pool.TubePool 153 public TubePool(Tube master) { argument 154 this.master = master; 155 recycle(master); // we'll use master as a part of the pool, too. 159 return TubeCloner.clone(master);
|
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/ |
H A D | TlsMasterSecretGenerator.java | 39 * KeyGenerator implementation for the SSL/TLS master secret derivation. 102 byte[] master; 108 master = ((protocolVersion >= 0x0303) ? 114 master = new byte[48]; 128 md5.digest(master, i << 4, 16); 133 return new TlsMasterSecretKey(master, premasterMajor,
|
/openjdk7/jdk/test/com/sun/crypto/provider/TLS/ |
H A D | TestMasterSecret.java | 66 byte[] master = null; 94 } else if (line.startsWith("m-master:")) { 95 master = parse(data); 111 if (Arrays.equals(master, enc) == false) {
|
H A D | TestKeyMaterial.java | 46 private static int PREFIX_LENGTH = "km-master: ".length(); 57 byte[] master = null; 84 if (line.startsWith("km-master:")) { 85 master = parse(data); 123 new SecretKeySpec(master, "TlsMasterSecret");
|
/openjdk7/jdk/test/sun/security/pkcs11/tls/ |
H A D | TestMasterSecret.java | 73 byte[] master = null; 101 } else if (line.startsWith("m-master:")) { 102 master = parse(data); 118 if (Arrays.equals(master, enc) == false) {
|
H A D | TestKeyMaterial.java | 47 private static int PREFIX_LENGTH = "km-master: ".length(); 65 byte[] master = null; 92 if (line.startsWith("km-master:")) { 93 master = parse(data); 131 new SecretKeySpec(master, "TlsMasterSecret");
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/ |
H A D | Stub.java | 136 * @param master The created stub will send messages to this pipe. 147 protected Stub(WSServiceDelegate owner, Tube master, BindingImpl binding, WSDLPort wsdlPort, EndpointAddress defaultEndPointAddress, @Nullable WSEndpointReference epr) { argument 148 this(owner,master, null, binding,wsdlPort,defaultEndPointAddress,epr); 167 private Stub(WSServiceDelegate owner, @Nullable Tube master, @Nullable WSPortInfo portInfo, BindingImpl binding, @Nullable WSDLPort wsdlPort, EndpointAddress defaultEndPointAddress, @Nullable WSEndpointReference epr) { argument 187 if(master != null) 188 this.tubes = new TubePool(master);
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/sei/ |
H A D | SEIStub.java | 62 public SEIStub(WSServiceDelegate owner, BindingImpl binding, SOAPSEIModel seiModel, Tube master, WSEndpointReference epr) { argument 63 super(owner, master, binding, seiModel.getPort(), seiModel.getPort().getAddress(), epr);
|
/openjdk7/jdk/src/share/classes/sun/security/ssl/ |
H A D | HandshakeMessage.java | 1858 int sender, SecretKey master, CipherSuite cipherSuite) { 1861 verifyData = getFinished(handshakeHash, sender, master); 1882 boolean verify(HandshakeHash handshakeHash, int sender, SecretKey master) { argument 1883 byte[] myFinished = getFinished(handshakeHash, sender, master); 1857 Finished(ProtocolVersion protocolVersion, HandshakeHash handshakeHash, int sender, SecretKey master, CipherSuite cipherSuite) argument
|
H A D | Handshaker.java | 995 * pre-master secret and the nonces from client and server, 999 SecretKey master = calculateMasterSecret(preMasterSecret, version); 1000 session.setMasterSecret(master); 1001 calculateConnectionKeys(master); 1006 * Calculate the master secret from its various components. This is 1009 * The master secret is the catenation of three MD5 hashes, each 1010 * consisting of the pre-master secret and a SHA1 hash. Those three 1011 * SHA1 hashes are of (different) constant strings, the pre-master 1064 System.out.println("RSA master secret generation error:"); 1082 // return master secre [all...] |
/openjdk7/jdk/src/share/classes/javax/swing/ |
H A D | GroupLayout.java | 748 LinkInfo master = getComponentInfo( 751 master.add(getComponentInfo(components[counter]));
|