/development/perftests/panorama/feature_stab/db_vlvm/ |
D | db_utilities_random.h | 77 int temp,temp2,i,j; in db_RandomSample() local 81 temp=db_RandomInt(r_seed,pool_size-1-i); in db_RandomSample() 85 if(s[j]<=temp) temp++; in db_RandomSample() 89 temp2=temp; in db_RandomSample() 90 temp=s[j]; in db_RandomSample() 94 s[i]=temp; in db_RandomSample()
|
D | db_utilities_geometry.h | 55 const double *temp; in db_PointCentroid2D() local 60 temp= *X++; in db_PointCentroid2D() 61 cx+=temp[0]; in db_PointCentroid2D() 62 cy+=temp[1]; in db_PointCentroid2D() 101 const double *temp; in db_PointCentroid3D() local 106 temp= *X++; in db_PointCentroid3D() 107 cx+=temp[0]; in db_PointCentroid3D() 108 cy+=temp[1]; in db_PointCentroid3D() 109 cz+=temp[2]; in db_PointCentroid3D()
|
D | db_utilities_indexing.cpp | 38 double temp; in db_LeanPartitionOnPivot() local 51 temp= *(s_point++); in db_LeanPartitionOnPivot() 52 if(temp<pivot) *(d_bottom++)=temp; in db_LeanPartitionOnPivot() 53 else if(temp>pivot) *(d_top--)=temp; in db_LeanPartitionOnPivot() 59 double db_LeanQuickSelect(const double *s,long nr_elements,long pos,double *temp) in db_LeanQuickSelect() argument 71 tempA=temp; in db_LeanQuickSelect() 72 tempB=temp+nr_elements; in db_LeanQuickSelect()
|
D | db_utilities_linalg.cpp | 33 double s,temp; in db_CholeskyDecomp6x6() local 39 temp=db_SafeReciprocal(d[0]); in db_CholeskyDecomp6x6() 40 A[6]=A[1]*temp; in db_CholeskyDecomp6x6() 41 A[12]=A[2]*temp; in db_CholeskyDecomp6x6() 42 A[18]=A[3]*temp; in db_CholeskyDecomp6x6() 43 A[24]=A[4]*temp; in db_CholeskyDecomp6x6() 44 A[30]=A[5]*temp; in db_CholeskyDecomp6x6() 48 temp=db_SafeReciprocal(d[1]); in db_CholeskyDecomp6x6() 49 A[13]=(A[8]-A[6]*A[12])*temp; in db_CholeskyDecomp6x6() 50 A[19]=(A[9]-A[6]*A[18])*temp; in db_CholeskyDecomp6x6() [all …]
|
D | db_rob_image_homography.cpp | 114 double back,Jf_dx[18],f[2],temp,temp2; in db_RobImageHomography_Jacobians() local 130 temp=Jf_dx[0]; temp2=Jf_dx[9]; in db_RobImageHomography_Jacobians() 131 JtJ[0]+=temp*Jf_dx[0]+temp2*Jf_dx[9]; in db_RobImageHomography_Jacobians() 132 JtJ[1]+=temp*Jf_dx[1]+temp2*Jf_dx[10]; in db_RobImageHomography_Jacobians() 133 JtJ[2]+=temp*Jf_dx[2]+temp2*Jf_dx[11]; in db_RobImageHomography_Jacobians() 134 JtJ[3]+=temp*Jf_dx[3]+temp2*Jf_dx[12]; in db_RobImageHomography_Jacobians() 135 JtJ[4]+=temp*Jf_dx[4]+temp2*Jf_dx[13]; in db_RobImageHomography_Jacobians() 136 JtJ[5]+=temp*Jf_dx[5]+temp2*Jf_dx[14]; in db_RobImageHomography_Jacobians() 137 JtJ[6]+=temp*Jf_dx[6]+temp2*Jf_dx[15]; in db_RobImageHomography_Jacobians() 138 JtJ[7]+=temp*Jf_dx[7]+temp2*Jf_dx[16]; in db_RobImageHomography_Jacobians() [all …]
|
D | db_utilities_linalg.h | 152 double temp; in db_Swap7() local 153 …temp= *A; *A++ = *B; *B++ =temp; temp= *A; *A++ = *B; *B++ =temp; temp= *A; *A++ = *B; *B++ … in db_Swap7() 154 …temp= *A; *A++ = *B; *B++ =temp; temp= *A; *A++ = *B; *B++ =temp; temp= *A; *A++ = *B; *B++ … in db_Swap7() 155 temp= *A; *A++ = *B; *B++ =temp; in db_Swap7() 164 double temp; in db_Swap9() local 165 …temp= *A; *A++ = *B; *B++ =temp; temp= *A; *A++ = *B; *B++ =temp; temp= *A; *A++ = *B; *B++ … in db_Swap9() 166 …temp= *A; *A++ = *B; *B++ =temp; temp= *A; *A++ = *B; *B++ =temp; temp= *A; *A++ = *B; *B++ … in db_Swap9() 167 …temp= *A; *A++ = *B; *B++ =temp; temp= *A; *A++ = *B; *B++ =temp; temp= *A; *A++ = *B; *B++ … in db_Swap9() 214 double temp; in db_OrthogonalizationSwap7() local 217 temp=ss[0]; ss[0]=ss[i]; ss[i]=temp; in db_OrthogonalizationSwap7() [all …]
|
D | db_framestitching.cpp | 87 double *temp,*temp_p; in db_StitchSimilarity3DRaw() local 104 temp= *X++; in db_StitchSimilarity3DRaw() 106 r[0]=(*temp++)-c[0]; in db_StitchSimilarity3DRaw() 107 r[1]=(*temp++)-c[1]; in db_StitchSimilarity3DRaw() 108 r[2]=(*temp++)-c[2]; in db_StitchSimilarity3DRaw()
|
D | db_utilities_camera.h | 106 double temp,div; in db_DeHomogenizeImagePoint() local 108 temp=xs[2]; in db_DeHomogenizeImagePoint() 109 if(temp!=0) in db_DeHomogenizeImagePoint() 111 div=1.0/temp; in db_DeHomogenizeImagePoint()
|
D | db_image_homography.cpp | 242 double *temp,*temp_p; in db_StitchSimilarity2DRaw() local 260 temp= *X++; in db_StitchSimilarity2DRaw() 262 r[0]=(*temp++)-c[0]; in db_StitchSimilarity2DRaw() 263 r[1]=(*temp++)-c[1]; in db_StitchSimilarity2DRaw()
|
D | db_feature_detection.cpp | 619 float *temp) in db_HarrisStrengthChunk_f() argument 627 gxx=temp; in db_HarrisStrengthChunk_f() 662 int *temp, int nc) in db_HarrisStrengthChunk_u() argument 668 gxx=temp; in db_HarrisStrengthChunk_u() 703 float *temp, in db_HarrisStrength_f() argument 715 db_HarrisStrengthChunk_f(s,img,x,3,right,h-4,temp); in db_HarrisStrength_f() 727 int *temp) in db_HarrisStrength_u() argument 742 db_HarrisStrengthChunk_u(s,img,x,3,h-4,temp,nc); in db_HarrisStrength_u() 1335 float *temp) in db_MaxSuppressFilterChunk_5x5_Aligned16_f() argument 1345 four=temp; in db_MaxSuppressFilterChunk_5x5_Aligned16_f() [all …]
|
/development/ndk/sources/android/ndk_helper/ |
D | vecmath.cpp | 121 float temp; in Inverse() local 123 temp = f_[0] * f_[5] * f_[10]; in Inverse() 124 if( temp >= 0 ) in Inverse() 125 pos += temp; in Inverse() 127 neg += temp; in Inverse() 128 temp = f_[4] * f_[9] * f_[2]; in Inverse() 129 if( temp >= 0 ) in Inverse() 130 pos += temp; in Inverse() 132 neg += temp; in Inverse() 133 temp = f_[8] * f_[1] * f_[6]; in Inverse() [all …]
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/ |
D | GLVertex.java | 82 GLVertex temp = new GLVertex(); in update() local 83 transform.multiply(this, temp); in update() 84 vertexBuffer.put(toFixed(temp.x)); in update() 85 vertexBuffer.put(toFixed(temp.y)); in update() 86 vertexBuffer.put(toFixed(temp.z)); in update()
|
/development/samples/BrokenKeyDerivation/src/com/example/android/brokenkeyderivation/ |
D | InsecureSHA1PRNGKeyDerivator.java | 445 int temp; 457 temp = arrW[t-3] ^ arrW[t-8] ^ arrW[t-14] ^ arrW[t-16]; 458 arrW[t] = ( temp<<1 ) | ( temp>>>31 ); 463 temp = ( ( a<<5 ) | ( a>>>27 ) ) + 470 a = temp; 474 temp = ((( a<<5 ) | ( a>>>27 ))) + (b ^ c ^ d) + (e + arrW[t] + 0x6ED9EBA1) ; 479 a = temp; 483 temp = (( a<<5 ) | ( a>>>27 )) + ((b & c) | (b & d) | (c & d)) + 489 a = temp; 493 temp = ((( a<<5 ) | ( a>>>27 ))) + (b ^ c ^ d) + (e + arrW[t] + 0xCA62C1D6) ; [all …]
|
/development/perftests/panorama/feature_mos/src/mosaic/ |
D | Delaunay.cpp | 132 EdgePointer temp, ans; in makeEdge() local 133 temp = allocEdge(); in makeEdge() 134 ans = temp; in makeEdge() 136 onext(temp) = ans; in makeEdge() 137 orig(temp) = origin; in makeEdge() 138 onext(++temp) = (EdgePointer) (ans + 3); in makeEdge() 139 onext(++temp) = (EdgePointer) (ans + 2); in makeEdge() 140 orig(temp) = destination; in makeEdge() 141 onext(++temp) = (EdgePointer) (ans + 1); in makeEdge() 148 EdgePointer alpha, beta, temp; in splice() local [all …]
|
D | Delaunay.h | 90 void rcssort(int lowelt, int highelt, int temp,
|
/development/samples/WeatherListWidget/src/com/example/android/weatherlistwidget/ |
D | WeatherWidgetService.java | 74 int temp = 0; in getViewAt() local 80 temp = mCursor.getInt(tempColIndex); in getViewAt() 87 rv.setTextViewText(R.id.widget_item, String.format(formatStr, temp, day)); in getViewAt()
|
D | WeatherWidgetProvider.java | 195 int temp = c.getInt(tempColIndex); in buildLayout() local 197 String header = String.format(formatStr, temp, in buildLayout()
|
/development/samples/ApiDemos/src/com/example/android/apis/ |
D | ApiDemos.java | 135 Map<String, Object> temp = new HashMap<String, Object>(); in addItem() local 136 temp.put("title", name); in addItem() 137 temp.put("intent", intent); in addItem() 138 data.add(temp); in addItem()
|
/development/samples/browseable/Quiz/Wearable/src/com.example.android.wearable.quiz/ |
D | QuizListenerService.java | 72 Map<Integer, Integer> temp = new HashMap<Integer, Integer>(4); 73 temp.put(0, R.drawable.ic_choice_a); 74 temp.put(1, R.drawable.ic_choice_b); 75 temp.put(2, R.drawable.ic_choice_c); 76 temp.put(3, R.drawable.ic_choice_d); 77 questionNumToDrawableId = Collections.unmodifiableMap(temp);
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/ |
D | TouchPaint.java | 539 double temp = vy; in drawSplat() local 540 vy = temp * Math.cos(tilt) - vz * Math.sin(tilt); in drawSplat() 541 vz = temp * Math.sin(tilt) + vz * Math.cos(tilt); in drawSplat() 544 temp = vx; in drawSplat() 545 vx = temp * Math.cos(orientation) - vy * Math.sin(orientation); in drawSplat() 546 vy = temp * Math.sin(orientation) + vy * Math.cos(orientation); in drawSplat()
|
/development/samples/browseable/Quiz/Application/src/com.example.android.wearable.quiz/ |
D | MainActivity.java | 115 Map<Integer, Integer> temp = new HashMap<Integer, Integer>(4); 116 temp.put(R.id.choice_a_radio, 0); in temp.put() 117 temp.put(R.id.choice_b_radio, 1); in temp.put() 118 temp.put(R.id.choice_c_radio, 2); in temp.put() 119 temp.put(R.id.choice_d_radio, 3); in temp.put() 120 radioIdToIndex = Collections.unmodifiableMap(temp);
|
/development/perftests/panorama/feature_stab/src/dbreg/ |
D | dbreg.cpp | 191 double temp[9]; in Init() local 192 db_Approx3DCalMat(m_K,temp,m_im_width,m_im_height); in Init() 254 double temp[9]; in UpdateReference() local 255 db_Multiply3x3_3x3(temp,m_H_dref_to_ref,m_H_ref_to_ins); in UpdateReference() 256 db_Copy9(m_H_dref_to_ref,temp); in UpdateReference()
|
D | vp_motionmodel.c | 99 double mat[3][3], indet, temp; in inv4Mat() local 128 temp = -1.; in inv4Mat() 130 if( ntemp == 0) temp = 1.; in inv4Mat() 132 outmat[j][i] = temp * Det3(mat)/indet; in inv4Mat()
|
/development/samples/RSSReader/src/com/example/android/rssreader/ |
D | RssReader.java | 324 final String temp = status; in run() local 328 mStatusText.setText(temp); in run()
|
/development/samples/devbytes/animation/ListViewDraggingAnimation/src/com/example/android/listviewdragginganimation/ |
D | DynamicListView.java | 374 Object temp = arrayList.get(indexOne); in swapElements() local 376 arrayList.set(indexTwo, temp); in swapElements()
|