HomeSort by relevance Sort by last modified time
    Searched defs:temp (Results 301 - 325 of 1947) sorted by null

<<11121314151617181920>>

  /packages/apps/Gallery2/src/com/android/gallery3d/util/
IntArray.java 27 int temp[] = new int[mSize + mSize]; local
28 System.arraycopy(mData, 0, temp, 0, mSize);
29 mData = temp;
  /packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/util/
IntArray.java 27 int temp[] = new int[mSize + mSize]; local
28 System.arraycopy(mData, 0, temp, 0, mSize);
29 mData = temp;
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities_linalg.cpp 33 double s,temp; local
39 temp=db_SafeReciprocal(d[0]);
40 A[6]=A[1]*temp;
41 A[12]=A[2]*temp;
42 A[18]=A[3]*temp;
43 A[24]=A[4]*temp;
44 A[30]=A[5]*temp;
48 temp=db_SafeReciprocal(d[1]);
49 A[13]=(A[8]-A[6]*A[12])*temp;
50 A[19]=(A[9]-A[6]*A[18])*temp;
84 double temp = 0.0; local
125 double s,temp; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/
AdtPluginTest.java 43 File temp = File.createTempFile("test", ".txt"); local
45 AdtPlugin.writeFile(temp, myContent);
46 String readBack = AdtPlugin.readFile(temp);
  /sdk/emulator/opengl/host/libs/Translator/GLcommon/
RangeManip.cpp 80 Range temp; local
108 Range temp;
118 if (list[i].rangeUnion(list[j],temp)) {
120 list[i] = temp;
  /system/core/libcutils/
fs.c 110 char temp[PATH_MAX]; local
111 if (snprintf(temp, PATH_MAX, "%s.XXXXXX", path) >= PATH_MAX) {
116 int fd = TEMP_FAILURE_RETRY(mkstemp(temp));
118 ALOGE("Failed to open %s: %s", temp, strerror(errno));
129 ALOGE("Failed to write %s: %s", temp, strerror(errno));
133 ALOGE("Failed to close %s: %s", temp, strerror(errno));
137 if (rename(temp, path) == -1) {
138 ALOGE("Failed to rename %s to %s: %s", temp, path, strerror(errno));
147 unlink(temp);
  /cts/tests/tests/content/src/android/content/res/cts/
ConfigurationTest.java 281 final Configuration temp = new Configuration(mConfig); local
282 assertFalse(temp.equals(mConfigDefault));
283 temp.setToDefaults();
284 assertTrue(temp.equals(mConfigDefault));
  /frameworks/base/obex/javax/obex/
ObexHelper.java 241 Calendar temp = Calendar.getInstance(); local
244 temp.setTimeZone(TimeZone.getTimeZone("UTC"));
246 temp.set(Calendar.YEAR, Integer.parseInt(dateString.substring(
248 temp.set(Calendar.MONTH, Integer.parseInt(dateString.substring(
250 temp.set(Calendar.DAY_OF_MONTH, Integer.parseInt(dateString
252 temp.set(Calendar.HOUR_OF_DAY, Integer.parseInt(dateString
254 temp.set(Calendar.MINUTE, Integer.parseInt(dateString
256 temp.set(Calendar.SECOND, Integer.parseInt(dateString
258 headerImpl.setHeader(HeaderSet.TIME_ISO_8601, temp);
311 Calendar temp = Calendar.getInstance() local
439 int temp = dateHeader.get(Calendar.YEAR); local
    [all...]
  /art/runtime/
proxy_test.cc 136 std::string temp; local
137 const char* proxy_class_descriptor = proxy_class->GetDescriptor(&temp);
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_jn.c 57 double a, b, temp, di; local
95 case 0: temp = cos(x)+sin(x); break;
96 case 1: temp = -cos(x)+sin(x); break;
97 case 2: temp = -cos(x)-sin(x); break;
98 case 3: temp = cos(x)-sin(x); break;
100 b = invsqrtpi*temp/sqrt(x);
105 temp = b;
107 a = temp;
118 temp = x*0.5; b = temp;
219 double a, b, temp; local
    [all...]
e_jnf.c 32 float a, b, temp, di; local
58 temp = b;
60 a = temp;
70 temp = x*(float)0.5; b = temp;
73 b *= temp; /* b = (x/2)^n */
134 temp = b;
137 a = temp;
142 temp = b;
145 a = temp;
171 float a, b, temp; local
    [all...]
  /bootable/recovery/
bootloader.cpp 171 struct bootloader_message temp; local
172 int count = fread(&temp, sizeof(temp), 1, f);
181 memcpy(out, &temp, sizeof(temp));
  /build/tools/rgb2565/
to565.c 89 int* temp = error; error = next_error; next_error = temp; local
  /cts/tests/tests/view/src/android/view/cts/
ViewGroup_MarginLayoutParamsTest.java 63 MarginLayoutParams temp = new ViewGroup.MarginLayoutParams(320, 480); local
64 mMarginLayoutParams = new ViewGroup.MarginLayoutParams(temp);
  /development/ndk/sources/android/ndk_helper/
vecmath.cpp 121 float temp; local
123 temp = f_[0] * f_[5] * f_[10];
124 if( temp >= 0 )
125 pos += temp;
127 neg += temp;
128 temp = f_[4] * f_[9] * f_[2];
129 if( temp >= 0 )
130 pos += temp;
132 neg += temp;
133 temp = f_[8] * f_[1] * f_[6]
    [all...]
  /development/perftests/panorama/feature_stab/db_vlvm/
db_framestitching.cpp 87 double *temp,*temp_p; local
104 temp= *X++;
106 r[0]=(*temp++)-c[0];
107 r[1]=(*temp++)-c[1];
108 r[2]=(*temp++)-c[2];
db_utilities_indexing.cpp 38 double temp; local
51 temp= *(s_point++);
52 if(temp<pivot) *(d_bottom++)=temp;
53 else if(temp>pivot) *(d_top--)=temp;
59 double db_LeanQuickSelect(const double *s,long nr_elements,long pos,double *temp)
71 tempA=temp;
72 tempB=temp+nr_elements;
db_utilities_linalg.h 152 double temp; local
153 temp= *A; *A++ = *B; *B++ =temp; temp= *A; *A++ = *B; *B++ =temp; temp= *A; *A++ = *B; *B++ =temp;
154 temp= *A; *A++ = *B; *B++ =temp; temp= *A; *A++ = *B; *B++ =temp; temp= *A; *A++ = *B; *B++ =temp
164 double temp; local
214 double temp; local
224 double temp; local
    [all...]
  /external/bluetooth/bluedroid/embdrv/sbc/encoder/srce/
sbc_dct.c 87 register SINT32 x0, x1, x2, x3, x4, x5, x6, x7,temp; local
102 temp = x0 ;
104 SBC_IDCT_MULT(SBC_COS_PI_SUR_4, ( temp - x4 ), x4); /*x4 = ( temp - x4 ) * cos(1*pi/4) ; */
112 temp = x2 ;
114 SBC_IDCT_MULT(SBC_COS_3PI_SUR_8,( temp - x6 ), x6); /*x6 = ( temp - x6 ) * cos(3*pi/8) ;*/
131 temp = x1 ;
133 x5 = temp - x5 ;
141 temp = x3
209 SINT32 temp,x2; local
    [all...]
  /external/bluetooth/bluedroid/stack/a2dp/
a2d_api.c 174 UINT8 temp[8]; local
205 p = temp;
208 (UINT32)2, (UINT8*)temp);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
ExtendedKeyUsage.java 163 KeyPurposeId[] temp = new KeyPurposeId[seq.size()]; local
168 temp[i++] = KeyPurposeId.getInstance(it.nextElement());
170 return temp;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/extension/
X509ExtensionUtil.java 60 Collection temp = new ArrayList(); local
92 temp.add(list);
94 return Collections.unmodifiableCollection(temp);
  /external/chromium_org/base/
atomicops_internals_mips_gcc.h 50 Atomic32 temp, old; local
55 "move %0, %3\n" // temp = new_value
56 "sc %0, %2\n" // *ptr = temp (with atomic check)
60 : "=&r" (temp), "=&r" (old), "=m" (*ptr)
71 Atomic32 temp, temp2; local
76 "ll %0, %2\n" // temp = *ptr
77 "addu %1, %0, %3\n" // temp2 = temp + increment
80 "addu %1, %0, %3\n" // temp2 = temp + increment
82 : "=&r" (temp), "=&r" (temp2), "=m" (*ptr)
atomicops_internals_x86_gcc.h 53 Atomic32 temp = increment; local
55 : "+r" (temp), "+m" (*ptr)
57 // temp now holds the old value of *ptr
58 return temp + increment;
63 Atomic32 temp = increment; local
65 : "+r" (temp), "+m" (*ptr)
67 // temp now holds the old value of *ptr
71 return temp + increment;
151 Atomic64 temp = increment; local
153 : "+r" (temp), "+m" (*ptr
161 Atomic64 temp = increment; local
    [all...]
stl_util.h 42 ForwardIterator temp = begin; local
44 delete *temp;
59 ForwardIterator temp = begin; local
61 delete temp->first;
62 delete temp->second;
73 ForwardIterator temp = begin; local
75 delete temp->first;
87 ForwardIterator temp = begin; local
89 delete temp->second;

Completed in 552 milliseconds

<<11121314151617181920>>