HomeSort by relevance Sort by last modified time
    Searched refs:temp (Results 851 - 875 of 2100) sorted by null

<<31323334353637383940>>

  /external/chromium_org/ui/gfx/
transform_util.cc 186 SkMatrix44 temp(SkMatrix44::kIdentity_Constructor);
188 temp.setDouble(1, 2, decomp.skew[2]);
189 matrix.preConcat(temp);
193 temp.setDouble(1, 2, 0);
194 temp.setDouble(0, 2, decomp.skew[1]);
195 matrix.preConcat(temp);
199 temp.setDouble(0, 2, 0);
200 temp.setDouble(0, 1, decomp.skew[0]);
201 matrix.preConcat(temp);
  /external/jpeg/
jcparam.c 34 long temp; local
49 temp = ((long) basic_table[i] * scale_factor + 50L) / 100L;
51 if (temp <= 0L) temp = 1L;
52 if (temp > 32767L) temp = 32767L; /* max quantizer needed for 12 bits */
53 if (force_baseline && temp > 255L)
54 temp = 255L; /* limit to baseline range if requested */
55 (*qtblptr)->quantval[i] = (UINT16) temp;
jquant1.c 195 long temp; local
203 temp = iroot; /* set temp = iroot ** nc */
205 temp *= iroot;
206 } while (temp <= (long) max_colors); /* repeat till iroot exceeds root */
211 ERREXIT1(cinfo, JERR_QUANT_FEW_COLORS, (int) temp);
230 temp = total_colors / Ncolors[j];
231 temp *= Ncolors[j]+1; /* done in long arith to avoid oflo */
232 if (temp > (long) max_colors)
235 total_colors = (int) temp;
    [all...]
  /external/openssh/openbsd-compat/
bsd-snprintf.c 688 double temp; local
729 temp = ufvalue;
730 my_modf(temp, &intpart);
741 temp = intpart*0.1;
742 my_modf(temp, &intpart);
743 idx = (int) ((temp -intpart +0.05)* 10.0);
744 /* idx = (int) (((double)(temp*0.1) -intpart +0.05) *10.0); */
745 /* printf ("%llf, %f, %x\n", temp, intpart, idx); */
756 temp = fracpart*0.1;
757 my_modf(temp, &fracpart)
    [all...]
  /external/qemu/distrib/jpeg-6b/
jcparam.c 34 long temp; local
49 temp = ((long) basic_table[i] * scale_factor + 50L) / 100L;
51 if (temp <= 0L) temp = 1L;
52 if (temp > 32767L) temp = 32767L; /* max quantizer needed for 12 bits */
53 if (force_baseline && temp > 255L)
54 temp = 255L; /* limit to baseline range if requested */
55 (*qtblptr)->quantval[i] = (UINT16) temp;
jquant1.c 195 long temp; local
203 temp = iroot; /* set temp = iroot ** nc */
205 temp *= iroot;
206 } while (temp <= (long) max_colors); /* repeat till iroot exceeds root */
211 ERREXIT1(cinfo, JERR_QUANT_FEW_COLORS, (int) temp);
230 temp = total_colors / Ncolors[j];
231 temp *= Ncolors[j]+1; /* done in long arith to avoid oflo */
232 if (temp > (long) max_colors)
235 total_colors = (int) temp;
    [all...]
  /external/qemu/telephony/
android_modem.c 91 static char temp[1024]; local
93 char* p = temp;
118 return temp;
1653 char temp[16]; local
1721 char temp[12]; local
    [all...]
  /external/tremolo/Tremolo/
bitwise.c 759 unsigned long temp; local
791 temp=oggpack_read(&o,len[j]);
792 if(temp==0xffffffffUL){
797 if(temp!=(values[j]&mask[len[j]])){
800 values[j]&mask[len[j]],temp,j-begin,len[j]);
825 temp=oggpack_look(&o,len[j]);
827 if(temp==0xffffffffUL){
832 if(temp!=(values[j]&mask[len[j]])){
835 values[j]&mask[len[j]],temp,j-begin,len[j]);
  /frameworks/av/media/libstagefright/codecs/avc/enc/src/
sad_halfpel.cpp 76 int temp; local
92 temp = ((p1[j] + p2[j] + p3[j] + p4[j] + 2) >> 2) - *kk++;
93 sad += AVC_ABS(temp);
117 int temp; local
131 temp = ((p1[j] + p2[j] + 1) >> 1) - *kk++;
132 sad += AVC_ABS(temp);
152 int temp; local
165 temp = ((p1[j] + p1[j+1] + 1) >> 1) - *kk++;
166 sad += AVC_ABS(temp);
  /external/chromium_org/third_party/freetype/src/psaux/
psobjs.c 1196 FT_Fixed temp[4]; local
1221 FT_Fixed* temp; local
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
transapi.cpp 285 UnicodeString temp; local
306 temp=Data[i+1];
307 t->transliterate(temp);
312 doTest(message, temp, Data[i+2]);
334 UnicodeString temp; local
352 temp=Data2[i+1];
353 t->transliterate(temp, start, limit);
354 doTest(t->getID() + ".transliterate(Replaceable, int32_t, int32_t, ):(" + start + "," + limit + ") for \n\t source: " + prettify(Data2[i+1]), temp, Data2[i+5]);
369 gotResBuf = temp = "try start greater than limit";
371 if(gotResBuf == temp) {
790 UnicodeString got, temp, message; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
svga_tgsi_insn.c 271 /* Release a single temp. Currently only effective if it was the last
272 * allocated temp, otherwise release will be delayed until the next
277 SVGA3dShaderDestToken temp )
279 if (temp.num == emit->internal_temp_count - 1)
354 SVGA3dShaderDestToken temp; local
358 temp.value = 0;
373 temp = get_temp( emit );
375 if (!emit_repl( emit, temp, &src0 ))
383 release_temp( emit, temp );
858 SVGA3dShaderDestToken temp = get_temp( emit ) local
884 SVGA3dShaderDestToken temp = get_temp(emit); local
913 SVGA3dShaderDestToken temp = get_temp( emit ); local
954 SVGA3dShaderDestToken temp = get_temp( emit ); local
987 SVGA3dShaderDestToken temp = get_temp( emit ); local
1016 SVGA3dShaderDestToken temp = get_temp( emit ); local
1049 SVGA3dShaderDestToken temp = get_temp( emit ); local
1072 SVGA3dShaderDestToken temp = get_temp( emit ); local
1097 SVGA3dShaderDestToken temp = get_temp( emit ); local
1186 SVGA3dShaderDestToken temp; local
1232 SVGA3dShaderDestToken temp; local
1316 SVGA3dShaderDestToken temp = get_temp(emit); local
1880 SVGA3dShaderDestToken temp = get_temp( emit ); local
3021 SVGA3dShaderDestToken temp; local
    [all...]
  /external/chromium_org/third_party/skia/src/gpu/
GrClipMaskManager.cpp 66 // the gpu alpha mask will draw the inverse paths as non-inverse to a temp buffer
376 void GrClipMaskManager::getTemp(int width, int height, GrAutoScratchTexture* temp) {
377 if (NULL != temp->texture()) {
378 // we've already allocated the temp texture
388 temp->set(this->getContext(), desc);
476 GrAutoScratchTexture temp; local
502 this->getTemp(maskSpaceIBounds.fRight, maskSpaceIBounds.fBottom, &temp);
503 if (NULL == temp.texture()) {
507 dst = temp.texture();
508 // clear the temp target and set blend to replac
968 SkRect temp = SkRect::Make(clipSpaceIBounds); local
975 SkPath temp; local
    [all...]
  /external/freetype/src/psaux/
psobjs.c 1196 FT_Fixed temp[4]; local
1221 FT_Fixed* temp; local
    [all...]
  /external/icu4c/test/intltest/
transapi.cpp 285 UnicodeString temp; local
306 temp=Data[i+1];
307 t->transliterate(temp);
312 doTest(message, temp, Data[i+2]);
334 UnicodeString temp; local
352 temp=Data2[i+1];
353 t->transliterate(temp, start, limit);
354 doTest(t->getID() + ".transliterate(Replaceable, int32_t, int32_t, ):(" + start + "," + limit + ") for \n\t source: " + prettify(Data2[i+1]), temp, Data2[i+5]);
369 gotResBuf = temp = "try start greater than limit";
371 if(gotResBuf == temp) {
790 UnicodeString got, temp, message; local
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/
svga_tgsi_insn.c 271 /* Release a single temp. Currently only effective if it was the last
272 * allocated temp, otherwise release will be delayed until the next
277 SVGA3dShaderDestToken temp )
279 if (temp.num == emit->internal_temp_count - 1)
354 SVGA3dShaderDestToken temp; local
358 temp.value = 0;
373 temp = get_temp( emit );
375 if (!emit_repl( emit, temp, &src0 ))
383 release_temp( emit, temp );
858 SVGA3dShaderDestToken temp = get_temp( emit ) local
884 SVGA3dShaderDestToken temp = get_temp(emit); local
913 SVGA3dShaderDestToken temp = get_temp( emit ); local
954 SVGA3dShaderDestToken temp = get_temp( emit ); local
987 SVGA3dShaderDestToken temp = get_temp( emit ); local
1016 SVGA3dShaderDestToken temp = get_temp( emit ); local
1049 SVGA3dShaderDestToken temp = get_temp( emit ); local
1072 SVGA3dShaderDestToken temp = get_temp( emit ); local
1097 SVGA3dShaderDestToken temp = get_temp( emit ); local
1186 SVGA3dShaderDestToken temp; local
1232 SVGA3dShaderDestToken temp; local
1316 SVGA3dShaderDestToken temp = get_temp(emit); local
1880 SVGA3dShaderDestToken temp = get_temp( emit ); local
3021 SVGA3dShaderDestToken temp; local
    [all...]
  /external/skia/src/gpu/
GrClipMaskManager.cpp 66 // the gpu alpha mask will draw the inverse paths as non-inverse to a temp buffer
376 void GrClipMaskManager::getTemp(int width, int height, GrAutoScratchTexture* temp) {
377 if (NULL != temp->texture()) {
378 // we've already allocated the temp texture
388 temp->set(this->getContext(), desc);
476 GrAutoScratchTexture temp; local
502 this->getTemp(maskSpaceIBounds.fRight, maskSpaceIBounds.fBottom, &temp);
503 if (NULL == temp.texture()) {
507 dst = temp.texture();
508 // clear the temp target and set blend to replac
968 SkRect temp = SkRect::Make(clipSpaceIBounds); local
975 SkPath temp; local
    [all...]
  /external/sonivox/arm-fm-22k/lib_src/
eas_pcm.c 979 EAS_I32 temp; local
1357 EAS_I32 temp; local
    [all...]
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_pcm.c 979 EAS_I32 temp; local
1357 EAS_I32 temp; local
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_pcm.c 979 EAS_I32 temp; local
1357 EAS_I32 temp; local
    [all...]
  /hardware/ti/wlan/mac80211/ti-utils/
ini.c 120 #define COMPARE_N_ADD(temp, str, val, ptr, size) \
121 if (strncmp(temp, str, sizeof(temp)) == 0) { \
133 #define DBG_COMPARE_N_ADD(temp, str, val, ptr, size) \
134 if (strncmp(temp, str, sizeof(temp)) == 0) { \
144 printf("%s ", temp); \
153 #define COMPARE_N_ADD2(temp, str, val, ptr, size) \
154 if (strncmp(temp, str, sizeof(temp)) == 0) {
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/bn/asm/
x86-mont.pl 114 $temp="mm6";
194 &movd ($temp,&DWP($frame,"esp")); # tp[0]
198 &paddq ($mul1,$temp); # +=tp[0]
208 &movd ($temp,&DWP($frame+4,"esp")); # tp[1]
214 &paddq ($car0,$temp); # +=tp[1]
225 &movd ($temp,&DWP($frame+4,"esp",$j,4));# tp[j+1]
233 &paddq ($car0,$temp); # +=tp[j+1]
252 &movd ($temp,&DWP($frame+4,"esp",$num,4)); # += tp[num]
254 &paddq ($car1,$temp);
  /external/openssl/crypto/bn/asm/
x86-mont.pl 114 $temp="mm6";
194 &movd ($temp,&DWP($frame,"esp")); # tp[0]
198 &paddq ($mul1,$temp); # +=tp[0]
208 &movd ($temp,&DWP($frame+4,"esp")); # tp[1]
214 &paddq ($car0,$temp); # +=tp[1]
225 &movd ($temp,&DWP($frame+4,"esp",$j,4));# tp[j+1]
233 &paddq ($car0,$temp); # +=tp[j+1]
252 &movd ($temp,&DWP($frame+4,"esp",$num,4)); # += tp[num]
254 &paddq ($car1,$temp);
  /system/core/adb/
adb.c 917 char temp[ MAX_PATH ]; local
921 GetTempPath( sizeof(temp) - 8, temp );
922 strcat( temp, "adb.log" );
929 flog = fopen( temp, "at" );
1109 char temp[3]; local
1112 ret = ReadFile( pipe_read, temp, 3, &count, NULL );
1118 if (count != 3 || temp[0] != 'O' || temp[1] != 'K' || temp[2] != '\n')
    [all...]
  /external/aac/libSBRenc/src/
invf_est.cpp 199 INT i,temp, j; local
253 temp = min(stopChannel - startChannel, numberOfStrongest);
254 invTemp = GetInvInt(temp);
256 for(i=0; i<temp; i++) {
257 origQuotaMeanStrongest += fMultDiv2(quotaVecOrig[i + stopChannel - temp], invTemp);
258 sbrQuotaMeanStrongest += fMultDiv2(quotaVecSbr[i + stopChannel - temp], invTemp);

Completed in 2964 milliseconds

<<31323334353637383940>>