HomeSort by relevance Sort by last modified time
    Searched full:temp (Results 76 - 100 of 5497) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
vlc_dequant.cpp 77 int32 temp; local
148 temp = (int32)datablock[k] * qmat[k] * QP;
149 temp = (temp + (0x7 & (temp >> 31))) >> 3;
150 if (temp > 2047) temp = 2047;
151 else if (temp < -2048) temp = -2048;
152 datablock[k] = (int) temp;
402 int32 temp; local
507 int32 temp; local
809 int32 temp; local
1071 int32 temp; local
    [all...]
get_pred_outside.cpp 113 #define PAD_CORNER { temp = *prev; \
114 temp |= (temp<<8); \
115 temp |= (temp<<16); \
116 *((uint32*)ptr) = temp; \
117 *((uint32*)(ptr+4)) = temp; \
118 *((uint32*)(ptr+=16)) = temp; \
119 *((uint32*)(ptr+4)) = temp; \
120 *((uint32*)(ptr+=16)) = temp; \
259 uint32 temp, temp2; local
316 temp = *(prev += 16); local
    [all...]
  /external/jacoco/org.jacoco.ant.test/src/org/jacoco/ant/
InstrumentTaskTest.xml 19 <tempfile property="temp.dir" prefix="jacocoTest" destdir="${java.io.tmpdir}" />
20 <mkdir dir="${temp.dir}"/>
21 <property name="exec.file" location="${temp.dir}/exec.file" />
25 <delete dir="${temp.dir}" quiet="false" failonerror="true"/>
35 <mkdir dir="${temp.dir}/output"/>
36 <property name="broken.file" location="${temp.dir}/broken.class"/>
40 <jacoco:instrument destdir="${temp.dir}/output">
41 <fileset dir="${temp.dir}" includes="broken.class"/>
44 <au:assertFileDoesntExist file="${temp.dir}/output/broken.class" />
48 <jacoco:instrument destdir="${temp.dir}"
    [all...]
  /hardware/intel/common/wrs_omxil_core/core/src/
intel_m4v_config_parser.cpp 790 uint8* temp = (uint8 *)OSCL_MALLOC(sizeof(uint8) * length); local
794 if (temp)
796 sps = temp; // Make a copy of the original pointer to be freed later
808 OSCL_FREE(temp);
835 OSCL_FREE(temp);
844 OSCL_FREE(temp);
859 OSCL_FREE(temp);
877 OSCL_FREE(temp);
905 OSCL_FREE(temp);
930 uint32 temp; local
1088 uint temp; local
1180 uint temp; local
1211 uint32 temp, pic_parameter_set_id, seq_parameter_set_id, entropy_coding_mode_flag; local
1231 uint32 temp; local
1260 uint32 temp; local
    [all...]
  /external/opencv/cxcore/src/
cxrand.cpp 55 temp = ( A*X(n) + carry )
56 X(n+1) = temp mod (2^32)
57 carry = temp / (2^32)
73 uint64 temp = *state; \
88 temp = ICV_RNG_NEXT(temp); \
89 t0 = ((unsigned)temp & p[i + 12]) + p[i]; \
90 temp = ICV_RNG_NEXT(temp); \
91 t1 = ((unsigned)temp & p[i + 13]) + p[i+1];
214 uint64 temp = *state; local
281 uint64 temp = *state; local
    [all...]
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
dogleg.h 20 Scalar sum, temp, alpha, bnorm; local
34 temp = qrfac(j,j);
35 if (temp == 0.) {
36 temp = epsmch * qrfac.col(j).head(j+1).maxCoeff();
37 if (temp == 0.)
38 temp = epsmch;
41 x[j] = qtb[j] / temp;
43 x[j] = (qtb[j] - qrfac.row(j).tail(n-j-1).dot(x.tail(n-j-1))) / temp;
82 temp = wa2.stableNorm();
83 sgnorm = gnorm / temp / temp
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
Scaling.java 47 static private final Vector2 temp = new Vector2(); field in class:Scaling
57 temp.x = sourceWidth * scale;
58 temp.y = sourceHeight * scale;
65 temp.x = sourceWidth * scale;
66 temp.y = sourceHeight * scale;
71 temp.x = sourceWidth * scale;
72 temp.y = sourceHeight * scale;
77 temp.x = sourceWidth * scale;
78 temp.y = sourceHeight * scale;
82 temp.x = targetWidth;
    [all...]
  /external/opencv3/modules/core/misc/java/src/java/
core+Point.java 44 long temp; local
45 temp = Double.doubleToLongBits(x);
46 result = prime * result + (int) (temp ^ (temp >>> 32));
47 temp = Double.doubleToLongBits(y);
48 result = prime * result + (int) (temp ^ (temp >>> 32));
core+Size.java 48 long temp; local
49 temp = Double.doubleToLongBits(height);
50 result = prime * result + (int) (temp ^ (temp >>> 32));
51 temp = Double.doubleToLongBits(width);
52 result = prime * result + (int) (temp ^ (temp >>> 32));
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
Mac3s_Sat_16x16.c 45 LVM_INT32 Temp,dInVal;
53 Temp = (srcval *val)>>15;
57 Temp = Temp + dInVal;
59 if (Temp > 0x00007FFF)
63 else if (Temp < -0x00008000)
69 *dst = (LVM_INT16)Temp;
Shift_Sat_v16xv16.c 33 LVM_INT32 temp; local
40 temp = (LVM_INT32)*src;
43 temp = temp << val;
45 if (temp > 0x00007FFF)
49 else if (temp < -0x00008000)
55 *dst = (LVM_INT16)temp;
LVC_Core_MixHard_1St_2i_D16C31_SAT.c 37 LVM_INT32 Temp;
50 Temp = ((LVM_INT32)*(src++) * (LVM_INT32)Current1Short)>>15;
51 if (Temp > 0x00007FFF)
53 else if (Temp < -0x00008000)
56 *dst++ = (LVM_INT16)Temp;
58 Temp = ((LVM_INT32)*(src++) * (LVM_INT32)Current2Short)>>15;
59 if (Temp > 0x00007FFF)
61 else if (Temp < -0x00008000)
64 *dst++ = (LVM_INT16)Temp;
  /prebuilts/misc/common/swig/include/2.0.11/ocaml/
std_complex.i 32 %typemap(in) const complex<T>& (std::complex<T> temp) {
34 temp = std::complex<T>(PyComplex_RealAsDouble($input),
36 $1 = &temp;
38 temp = std::complex<T>(PyFloat_AsDouble($input), 0);
39 $1 = &temp;
41 temp = std::complex<T>(PyInt_AsLong($input), 0);
42 $1 = &temp;
  /prebuilts/go/darwin-x86/src/math/
sinh.go 43 var temp float64
46 temp = Exp(x) / 2
49 temp = (Exp(x) - Exp(-x)) / 2
53 temp = (((P3*sq+P2)*sq+P1)*sq + P0) * x
54 temp = temp / (((sq+Q2)*sq+Q1)*sq + Q0)
58 temp = -temp
60 return temp
  /prebuilts/go/linux-x86/src/math/
sinh.go 43 var temp float64
46 temp = Exp(x) / 2
49 temp = (Exp(x) - Exp(-x)) / 2
53 temp = (((P3*sq+P2)*sq+P1)*sq + P0) * x
54 temp = temp / (((sq+Q2)*sq+Q1)*sq + Q0)
58 temp = -temp
60 return temp
  /external/elfutils/tests/
run-strip-test.sh 23 debugout=${debugfile:+-f testfile.debug.temp -F $debugfile}
26 test x$stripped = xtestfile.temp || testfiles $stripped $debugfile
28 tempfiles testfile.temp testfile.debug.temp testfile.unstrip
30 testrun ${abs_top_builddir}/src/strip -o testfile.temp $debugout $original
34 cmp $stripped testfile.temp || status=$?
37 testrun ${abs_top_builddir}/src/elflint -q testfile.temp || status=$?
40 cmp $debugfile testfile.debug.temp || status=$?
43 testrun ${abs_top_builddir}/src/elflint -q -d testfile.debug.temp || status=$?
46 testrun ${abs_top_builddir}/src/unstrip -o testfile.unstrip testfile.temp testfile.debug.tem
    [all...]
  /external/llvm/test/CodeGen/Hexagon/
misaligned-access.ll 9 %temp = alloca i32, align 4
11 store i32 %0, i32* %temp, align 4
12 %1 = bitcast i32* %temp to i64*
  /external/mesa3d/src/gallium/auxiliary/postprocess/
pp_colors.h 36 "DCL TEMP[0]\n"
38 " 0: TEX TEMP[0], IN[0].xyyy, SAMP[0], 2D\n"
39 " 1: MOV TEMP[0].x, IMM[0].xxxx\n"
40 " 2: MOV OUT[0], TEMP[0]\n"
49 "DCL TEMP[0]\n"
51 " 0: TEX TEMP[0], IN[0].xyyy, SAMP[0], 2D\n"
52 " 1: MOV TEMP[0].y, IMM[0].xxxx\n"
53 " 2: MOV OUT[0], TEMP[0]\n"
62 "DCL TEMP[0]\n"
64 " 0: TEX TEMP[0], IN[0].xyyy, SAMP[0], 2D\n
    [all...]
  /external/mesa3d/src/gallium/tests/graw/vertex-shader/
vert-arl.sh 7 DCL TEMP[0]
19 MUL TEMP[0], IN[0], IMM[0]
20 ARL ADDR[0].x, TEMP[0]
vert-arr.sh 7 DCL TEMP[0]
19 MUL TEMP[0], IN[0], IMM[0]
20 ARR ADDR[0].x, TEMP[0]
vert-flr.sh 7 DCL TEMP[0]
19 MUL TEMP[0], IN[0], IMM[0]
20 FLR ADDR[0].x, TEMP[0]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
AverageFilter.java 35 private float[] temp = new float[NUM_FRAMES]; field in class:AverageFilter
58 temp[counter] = ((Float)inFrameValue.getValue()).floatValue();
63 float output = (temp[0] + temp[1] + temp[2] + temp[3] + temp[4]) / NUM_FRAMES;
64 if (mLogVerbose) Log.v(TAG, "Avg= " + output + "temp1= " + temp[0] + "temp2= " +
65 temp[1] + "temp3= " + temp[2] + "temp4=" + temp[3] + "temp5=" + temp[4])
    [all...]
  /system/bt/embdrv/sbc/encoder/srce/
sbc_packing.c 59 UINT8 Temp;
66 UINT32 u32QuantizedSbValue,u32QuantizedSbValue0; /* temp variable to store quantized sb val*/
93 Temp=0;
100 Temp <<= 1;
101 Temp |= pstrEncParams->as16Join[s32Sb];
111 *(pu8PacketPtr++)=Temp;
112 Temp = 0;
120 /*Temp=*pu8PacketPtr;*/
123 Temp<<= 4;
124 Temp |= *ps16GenPtr++
    [all...]
  /external/libgsm/src/
lpc.c 36 word temp, smax, scalauto; local
49 temp = GSM_ABS( s[k] );
50 if (temp > smax) smax = temp;
183 register word temp; local
198 temp = gsm_norm( L_ACF[0] );
200 assert(temp >= 0 && temp < 32);
203 for (i = 0; i <= 8; i++) ACF[i] = SASR( L_ACF[i] << temp, 16 );
215 temp = P[1]
257 register word temp; local
291 register word temp; local
    [all...]
  /hardware/ti/omap3/omx/ti_omx_config_parser/src/
ti_m4v_config_parser.cpp 805 uint8* temp = (uint8 *)OSCL_MALLOC(sizeof(uint8) * length); local
809 if (temp)
811 sps = temp; // Make a copy of the original pointer to be freed later
823 OSCL_FREE(temp);
850 OSCL_FREE(temp);
859 OSCL_FREE(temp);
874 OSCL_FREE(temp);
891 OSCL_FREE(temp);
908 OSCL_FREE(temp);
932 uint32 temp; local
1096 uint temp; local
1188 uint temp; local
1219 uint32 temp, pic_parameter_set_id, seq_parameter_set_id; local
1235 uint32 temp; local
1260 uint32 temp; local
    [all...]

Completed in 4232 milliseconds

1 2 34 5 6 7 8 91011>>