Searched defs:tmp (Results 26 - 50 of 141) sorted by relevance

123456

/openjdk7/hotspot/src/share/vm/services/
H A DmemoryManager.cpp312 GCStatInfo *tmp = _last_gc_stat; local
314 _current_gc_stat = tmp;
H A DattachListener.cpp240 int tmp; local
241 int n = sscanf(arg1, "%d", &tmp);
246 value = (tmp != 0);
/openjdk7/jdk/src/windows/native/java/util/
H A DWindowsPreferences.c36 int tmp[2]; local
42 tmp[0]= (int) handle;
43 tmp[1]= errorCode;
45 (*env)->SetIntArrayRegion(env, result, 0, 2, tmp);
58 int tmp[3]; local
67 tmp[0]= (int) handle;
68 tmp[1]= errorCode;
69 tmp[2]= lpdwDisposition;
71 (*env)->SetIntArrayRegion(env, result, 0, 3, tmp);
160 int tmp[ local
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_FileDialog.cpp75 LPCTSTR tmp = JNU_GetStringPlatformChars(env, filterDescription, NULL); local
76 _tcscpy(s_fileFilterString, tmp);
77 JNU_ReleaseStringPlatformChars(env, filterDescription, tmp);
292 LPCTSTR tmp = JNU_GetStringPlatformChars(env, file, NULL);
293 _tcsncpy(fileBuffer, tmp, bufferLimit - 2); // the fileBuffer is double null terminated string
294 JNU_ReleaseStringPlatformChars(env, file, tmp);
H A Dawt_BitmapUtil.cpp47 int tmp = 0; local
54 *bufPos = tmp;
56 tmp = 0;
61 tmp |= cbit;
67 *bufPos = tmp;
69 tmp = 0;
/openjdk7/jdk/src/share/native/sun/awt/medialib/
H A Dmlib_ImageConvCopyEdge_Bit.c91 mlib_u32 s0, s1, tmp; local
224 tmp = (s0 << shift1) | (s1 >> shift2);
225 pd[i*img_strided] = (pd[i*img_strided] & ~mask) | (tmp & mask);
234 tmp = (s0 << shift1) | (s1 >> shift2);
235 pd[i*img_strided] = (pd[i*img_strided] & ~mask) | (tmp & mask);
253 tmp = (s0 << shift1) | (s1 >> shift2);
255 (tmp & mask);
272 tmp = (s0 << shift1) | (s1 >> shift2);
273 pd[i*img_strided] = (pd[i*img_strided] & ~mask) | (tmp & mask);
282 tmp
[all...]
H A Dmlib_c_ImageCopy.c657 TYPE *tmp, s0, s1; local
679 tmp = (TYPE *) ((mlib_addr) sp & ~(SIZE - 1));
683 s0 = *tmp++;
689 s1 = *tmp++;
/openjdk7/jdk/src/share/native/sun/security/ec/impl/
H A Dec2_aff.c279 mp_int accl, accr, tmp, pxt, pyt; local
283 MP_DIGITS(&tmp) = 0;
288 MP_CHECKOK(mp_init(&tmp, FLAG(px)));
315 MP_CHECKOK( group->meth->field_mul(&pxt, &pyt, &tmp, group->meth) );
316 MP_CHECKOK( group->meth->field_add(&accl, &tmp, &accl, group->meth) );
318 MP_CHECKOK( group->meth->field_sqr(&pxt, &tmp, group->meth) );
319 MP_CHECKOK( group->meth->field_mul(&pxt, &tmp, &accr, group->meth) );
320 MP_CHECKOK( group->meth->field_mul(&group->curvea, &tmp, &tmp, group->meth) );
321 MP_CHECKOK( group->meth->field_add(&tmp,
[all...]
H A Decp_aff.c292 mp_int accl, accr, tmp, pxt, pyt; local
296 MP_DIGITS(&tmp) = 0;
301 MP_CHECKOK(mp_init(&tmp, FLAG(px)));
329 MP_CHECKOK( group->meth->field_sqr(&pxt, &tmp, group->meth) );
330 MP_CHECKOK( group->meth->field_mul(&pxt, &tmp, &accr, group->meth) );
331 MP_CHECKOK( group->meth->field_mul(&group->curvea, &pxt, &tmp, group->meth) );
332 MP_CHECKOK( group->meth->field_add(&tmp, &accr, &accr, group->meth) );
354 mp_clear(&tmp);
H A Decp_224.c141 int tmp; local
148 tmp = carry;
157 tmp -= carry;
159 r3b = tmp;
/openjdk7/jdk/src/solaris/classes/sun/font/
H A DXRGlyphCache.java46 MutableInteger tmp = new MutableInteger(0); field in class:XRGlyphCache
103 tmp.setValue(id);
104 return cacheMap.get(tmp);
280 tmp.setValue(glyphId);
281 XRGlyphCacheEntry entry = cacheMap.get(tmp);
283 cacheMap.remove(tmp);
/openjdk7/jdk/src/share/classes/sun/awt/geom/
H A DCrossings.java240 private Vector tmp = new Vector(); field in class:Crossings
260 Curve.insertQuad(tmp, x0, y0, coords);
261 Enumeration enum_ = tmp.elements();
268 tmp.clear();
298 Curve.insertCubic(tmp, x0, y0, coords);
299 Enumeration enum_ = tmp.elements();
306 tmp.clear();
/openjdk7/jdk/src/share/classes/java/util/
H A DComparableTimSort.java80 * Maximum initial size of tmp array, which is used for merging. The array
91 private Object[] tmp; field in class:ComparableTimSort
120 tmp = newArray;
449 // Merge remaining runs, using tmp array with min(len1, len2) elements
507 int tmp = lastOfs;
509 ofs = hint - tmp;
562 int tmp = lastOfs;
564 ofs = hint - tmp;
623 Object[] tmp = ensureCapacity(len1);
624 System.arraycopy(a, base1, tmp,
[all...]
H A DTimSort.java105 * Maximum initial size of tmp array, which is used for merging. The array
116 private T[] tmp; // Actual runtime type will be Object[], regardless of T field in class:TimSort
147 tmp = newArray;
481 // Merge remaining runs, using tmp array with min(len1, len2) elements
539 int tmp = lastOfs;
541 ofs = hint - tmp;
595 int tmp = lastOfs;
597 ofs = hint - tmp;
655 T[] tmp = ensureCapacity(len1);
656 System.arraycopy(a, base1, tmp,
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DloaderConstraints.cpp382 LoaderConstraintEntry** tmp = pp2; local
384 pp1 = tmp;
/openjdk7/jdk/src/share/classes/com/sun/script/javascript/
H A DJSAdapter.java210 Object tmp = ((NativeJavaArray)val).unwrap();
212 if (tmp.getClass() == Object[].class) {
213 Object[] array = (Object[]) tmp;
255 Scriptable tmp = getAdaptee();
256 if (tmp instanceof Function) {
257 return ((Function)tmp).call(cx, scope, tmp, args);
276 Scriptable tmp = getAdaptee();
277 if (tmp instanceof Function) {
278 return ((Function)tmp)
299 mapToId(Object tmp) argument
[all...]
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_CodeStubs_x86.cpp315 Register tmp = rax; local
317 __ push(tmp);
322 __ get_thread(tmp);
323 __ cmpptr(tmp, Address(tmp2, instanceKlass::init_thread_offset()));
325 __ pop(tmp);
/openjdk7/hotspot/src/share/vm/asm/
H A Dassembler.cpp321 RegisterOrConstant AbstractAssembler::delayed_value(int(*value_fn)(), Register tmp, int offset) { argument
324 return delayed_value_impl(delayed_value_addr(value_fn), tmp, offset);
326 RegisterOrConstant AbstractAssembler::delayed_value(address(*value_fn)(), Register tmp, int offset) { argument
329 return delayed_value_impl(delayed_value_addr(value_fn), tmp, offset);
/openjdk7/hotspot/src/share/vm/utilities/
H A DglobalDefinitions.cpp296 jlong tmp = (jlong) f; local
297 if (tmp != high_bit) {
298 return tmp;
313 jlong tmp = (jlong) f; local
314 if (tmp != high_bit) {
315 return tmp;
H A Dstack.inline.hpp73 E tmp = _cur_seg[--this->_cur_seg_size]; local
75 return tmp;
/openjdk7/jdk/src/solaris/native/com/sun/management/
H A DLinuxOperatingSystem.c127 char *tmp; local
133 if ((tmp = strrchr(buf, ')')) != NULL) {
135 tmp += 2;
136 if (tmp < buf + n) {
137 n = vsscanf(tmp, fmt, args);
233 ticks *pticks, tmp; local
251 tmp = *pticks;
264 if (pticks->usedKernel < tmp.usedKernel) {
267 kdiff = pticks->usedKernel - tmp.usedKernel;
269 tdiff = pticks->total - tmp
[all...]
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_Robot.c172 jint *tmp; local
178 tmp = (*env)->GetIntArrayElements(env, buttonDownMasks, JNI_FALSE);
182 (*env)->ReleaseIntArrayElements(env, buttonDownMasks, tmp, 0);
186 masks[i] = tmp[i];
188 (*env)->ReleaseIntArrayElements(env, buttonDownMasks, tmp, 0);
/openjdk7/jdk/src/windows/native/java/lang/
H A Djava_props_md.c271 char tmp[SNAMESIZE]; local
274 LOCALE_SNAME, tmp, SNAMESIZE) == 0 ||
275 sscanf(tmp, "%*[a-z\\-]%1[A-Z]%[a-z]", *script, &((*script)[1])) == 0 ||
332 /* tmp dir */
/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djcmaster.c316 int ci, mcublks, tmp; local
337 tmp = (int) (compptr->height_in_blocks % compptr->v_samp_factor);
338 if (tmp == 0) tmp = compptr->v_samp_factor;
339 compptr->last_row_height = tmp;
370 tmp = (int) (compptr->width_in_blocks % compptr->MCU_width);
371 if (tmp == 0) tmp = compptr->MCU_width;
372 compptr->last_col_width = tmp;
373 tmp
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DObjectReader.java658 protected Vector tmp = new Vector(); // Vector<Class> field in class:ObjectReader.SignatureParser
664 public void doBool () { tmp.add(Boolean.TYPE); }
665 public void doChar () { tmp.add(Character.TYPE); }
666 public void doFloat () { tmp.add(Float.TYPE); }
667 public void doDouble() { tmp.add(Double.TYPE); }
668 public void doByte () { tmp.add(Byte.TYPE); }
669 public void doShort () { tmp.add(Short.TYPE); }
670 public void doInt () { tmp.add(Integer.TYPE); }
671 public void doLong () { tmp.add(Long.TYPE); }
674 tmp
[all...]

Completed in 83 milliseconds

123456