Searched refs:temp (Results 101 - 125 of 355) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/native/sun/java2d/cmm/lcms/
H A Dcmscam02.c182 cmsFloat64Number temp; local
187 temp = pow((-1.0 * pMod->FL * clr.RGBp[i] / 100.0), 0.42);
188 clr.RGBpa[i] = (-1.0 * 400.0 * temp) / (temp + 27.13) + 0.1;
191 temp = pow((pMod->FL * clr.RGBp[i] / 100.0), 0.42);
192 clr.RGBpa[i] = (400.0 * temp) / (temp + 27.13) + 0.1;
205 cmsFloat64Number a, b, temp, e, t, r2d, d2r; local
217 temp = b / a;
218 if (b > 0) clr.h = (r2d * atan(temp));
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DDurationDV.java284 int temp = addto.month + date.month;
285 duration.month = modulo (temp, 1, 13);
286 int carry = fQuotient (temp, 1, 13);
297 temp = addto.minute +date.minute + carry;
298 carry = fQuotient (temp, 60);
299 duration.minute= mod(temp, 60, carry);
302 temp = addto.hour + date.hour + carry;
303 carry = fQuotient(temp, 24);
304 duration.hour = mod(temp, 24, carry);
311 temp
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DSingletonIterator.java73 final boolean temp = _isRestartable;
76 _isRestartable = temp;
H A DMultiValuedNodeHeapIterator.java189 final HeapNode temp = _heap[0];
191 _heap[_heapSize] = temp;
252 final HeapNode temp = _heap[smallest];
254 _heap[i] = temp;
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DRealm.java125 String temp = new String(name);
128 while (i < temp.length()) {
129 if (temp.charAt(i) == PrincipalName.NAME_REALM_SEPARATOR) {
130 if (i == 0 || temp.charAt(i - 1) != '\\') {
131 if (i + 1 < temp.length())
132 result = temp.substring(i + 1, temp.length());
152 String temp = new String(name);
155 while (i < temp.length()) {
156 if (temp
[all...]
H A DKrbPriv.java134 byte[] temp = unenc_encKrbPrivPart.asn1Encode();
137 new EncryptedData(key, temp,
142 temp = krb_priv.asn1Encode();
161 byte[] temp = krb_priv.encPart.reset(bytes);
162 DerValue ref = new DerValue(temp);
H A DKrbSafe.java135 byte[] temp = krb_safeBody.asn1Encode();
138 temp,
145 temp = krb_safe.asn1Encode();
162 byte[] temp = krb_safe.safeBody.asn1Encode();
164 if (!krb_safe.cksum.verifyKeyedChecksum(temp, key,
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/resolver/implementations/
H A DResolverLocalFilesystem.java90 StringBuffer temp = new StringBuffer(subStr.length());
94 if (index == -1) temp.append(subStr.substring(offset));
97 temp.append(subStr.substring(offset,index));
98 temp.append(' ');
103 subStr = temp.toString();
/openjdk7/hotspot/src/share/vm/adlc/
H A Dmain.cpp144 char *temp = base_plus_suffix("dfa_",base); local
145 AD._DFA_file._name = base_plus_suffix(temp,".cpp");
146 delete temp;
147 temp = base_plus_suffix("ad_",base);
148 AD._CPP_file._name = base_plus_suffix(temp,".cpp");
149 AD._CPP_CLONE_file._name = base_plus_suffix(temp,"_clone.cpp");
150 AD._CPP_EXPAND_file._name = base_plus_suffix(temp,"_expand.cpp");
151 AD._CPP_FORMAT_file._name = base_plus_suffix(temp,"_format.cpp");
152 AD._CPP_GEN_file._name = base_plus_suffix(temp,"_gen.cpp");
153 AD._CPP_MISC_file._name = base_plus_suffix(temp,"_mis
[all...]
/openjdk7/jdk/test/com/sun/net/httpserver/
H A DSelCacheTest.java111 File temp = File.createTempFile ("Test1", null);
112 temp.deleteOnExit();
113 OutputStream fout = new BufferedOutputStream (new FileOutputStream(temp));
126 compare (new File(orig), temp);
127 temp.delete();
H A DTest1.java119 File temp = File.createTempFile ("Test1", null);
120 temp.deleteOnExit();
122 OutputStream fout = new BufferedOutputStream (new FileOutputStream(temp));
135 compare (new File(orig), temp);
136 temp.delete();
H A DTest12.java147 File temp = File.createTempFile ("Test1", null);
148 temp.deleteOnExit();
149 OutputStream fout = new BufferedOutputStream (new FileOutputStream(temp));
162 compare (new File(orig), temp);
163 temp.delete();
H A DTest9.java156 File temp;
158 temp = File.createTempFile (s, null);
159 temp.deleteOnExit();
161 OutputStream fout = new BufferedOutputStream (new FileOutputStream(temp));
178 System.out.println ("temp = "+temp);
183 compare (new File(orig), temp);
184 temp.delete();
H A DTest9a.java149 File temp;
151 temp = File.createTempFile (s, null);
152 temp.deleteOnExit();
154 OutputStream fout = new BufferedOutputStream (new FileOutputStream(temp));
171 System.out.println ("temp = "+temp);
176 compare (new File(orig), temp);
177 temp.delete();
/openjdk7/jdk/src/share/classes/java/text/
H A DDigitList.java163 StringBuffer temp = getStringBuffer();
164 temp.append('.');
165 temp.append(digits, 0, count);
166 temp.append('E');
167 temp.append(decimalAt);
168 return Double.parseDouble(temp.toString());
189 StringBuffer temp = getStringBuffer();
190 temp.append(digits, 0, count);
192 temp.append('0');
194 return Long.parseLong(temp
[all...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiManageCapabilities.cpp252 jvmtiCapabilities temp; local
253 get_potential_capabilities(current, prohibited, &temp);
254 if (has_some(exclude(desired, &temp, &temp))) {
262 both(&onload_capabilities, desired, &temp);
263 either(&always_capabilities, &temp, &always_capabilities);
264 exclude(&onload_capabilities, &temp, &onload_capabilities);
267 both(&onload_solo_capabilities, desired, &temp);
268 either(&always_solo_capabilities, &temp, &always_solo_capabilities);
269 exclude(&onload_solo_capabilities, &temp,
288 jvmtiCapabilities temp; local
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_xembed_server.c121 pxembed_server_data temp = xembed_list; local
122 while (temp != NULL) {
123 if (temp->handle == handle) {
124 return temp;
126 temp = temp->next;
134 pxembed_server_data temp = xembed_list; local
136 while (temp != NULL) {
137 if ((*env)->IsSameObject(env, temp->server, server)) {
138 return temp;
148 pxembed_server_data temp = xembed_list; local
185 pxembed_server_data * temp = &xembed_list; local
[all...]
/openjdk7/jdk/src/share/classes/sun/security/jgss/krb5/
H A DInitialToken.java154 byte[] temp = new byte[4];
155 writeLittleEndian(flags, temp);
156 checksumBytes[pos++] = temp[0];
157 checksumBytes[pos++] = temp[1];
158 checksumBytes[pos++] = temp[2];
159 checksumBytes[pos++] = temp[3];
197 writeLittleEndian(krbCredMessage.length, temp);
198 checksumBytes[pos++] = temp[0];
199 checksumBytes[pos++] = temp[1];
H A DWrapToken_v2.java104 byte[] temp = new byte[tokenDataLen];
105 int len = getData(temp, 0);
106 return Arrays.copyOf(temp, len);
H A DCipherHelper.java855 byte[] temp = new byte[Math.max(blockSize,
860 des.update(header, 0, header.length, temp, 0);
866 temp, 0);
936 int temp = 0;
944 temp = des.update(cipherText, offset, WrapToken.CONFOUNDER_SIZE,
946 // temp should be CONFOUNDER_SIZE
947 // debug("\n\ttemp is " + temp + " and CONFOUNDER_SIZE is "
965 temp = des.update(cipherText, offset, blockSize,
967 // temp should be blockSize
968 // debug("\n\ttemp is " + temp
1439 private int temp; field in class:CipherHelper.WrapTokenInputStream
[all...]
/openjdk7/corba/src/share/classes/sun/rmi/rmic/iiop/
H A DArrayType.java96 Type temp = CompoundType.makeType(arrayType,null,stack);
98 if (temp != null) {
102 result = new ArrayType(stack,temp,theType.getArrayDimension());
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/wspolicy/
H A DNamespaceVersion.java136 Map<XmlToken, QName> temp = new HashMap<XmlToken, QName>();
138 temp.put(token, new QName(nsUri, token.toString()));
140 tokenToQNameCache = Collections.unmodifiableMap(temp);
/openjdk7/jdk/src/share/classes/sun/rmi/transport/tcp/
H A DMultiplexInputStream.java75 private byte temp[] = new byte[1]; field in class:MultiplexInputStream
100 int n = read(temp, 0, 1);
103 return temp[0] & 0xFF;
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Decp_aff.c81 mp_int lambda, temp, tempx, tempy; local
84 MP_DIGITS(&temp) = 0;
88 MP_CHECKOK(mp_init(&temp, FLAG(px)));
121 MP_CHECKOK(mp_set_int(&temp, 3));
123 MP_CHECKOK(group->meth->field_enc(&temp, &temp, group->meth));
126 field_mul(&tempx, &temp, &tempx, group->meth));
129 MP_CHECKOK(mp_set_int(&temp, 2));
131 MP_CHECKOK(group->meth->field_enc(&temp, &temp, grou
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/util/
H A DIntegerArray.java103 int temp = _array[left];
105 _array[right--] = temp;
176 int temp = array[i];
178 array[j] = temp;

Completed in 96 milliseconds

1234567891011>>