HomeSort by relevance Sort by last modified time
    Searched full:temp (Results 101 - 125 of 4258) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/chromium_org/chrome/common/extensions/permissions/
usb_device_permission_data.cc 68 int temp; local
69 if (!dict_value->GetInteger(kVendorIdKey, &temp))
71 if (temp < 0 || temp > kuint16max)
73 vendor_id_ = temp;
75 if (!dict_value->GetInteger(kProductIdKey, &temp))
77 if (temp < 0 || temp > kuint16max)
79 product_id_ = temp;
81 if (!dict_value->GetInteger(kInterfaceIdKey, &temp))
    [all...]
  /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/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 17 Scalar sum, temp, alpha, bnorm; local
31 temp = qrfac(j,j);
32 if (temp == 0.) {
33 temp = epsmch * qrfac.col(j).head(j+1).maxCoeff();
34 if (temp == 0.)
35 temp = epsmch;
38 x[j] = qtb[j] / temp;
40 x[j] = (qtb[j] - qrfac.row(j).tail(n-j-1).dot(x.tail(n-j-1))) / temp;
79 temp = wa2.stableNorm();
80 sgnorm = gnorm / temp / temp
    [all...]
  /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;
  /external/eigen/blas/
ctpmv.f 106 COMPLEX TEMP
169 TEMP = X(J)
172 X(I) = X(I) + TEMP*AP(K)
183 TEMP = X(JX)
186 X(IX) = X(IX) + TEMP*AP(K)
200 TEMP = X(J)
203 X(I) = X(I) + TEMP*AP(K)
215 TEMP = X(JX)
218 X(IX) = X(IX) + TEMP*AP(K)
236 TEMP = X(J
    [all...]
ctpsv.f 109 COMPLEX TEMP
173 TEMP = X(J)
176 X(I) = X(I) - TEMP*AP(K)
187 TEMP = X(JX)
191 X(IX) = X(IX) - TEMP*AP(K)
204 TEMP = X(J)
207 X(I) = X(I) - TEMP*AP(K)
218 TEMP = X(JX)
222 X(IX) = X(IX) - TEMP*AP(K)
238 TEMP = X(J
    [all...]
ztpmv.f 106 DOUBLE COMPLEX TEMP
169 TEMP = X(J)
172 X(I) = X(I) + TEMP*AP(K)
183 TEMP = X(JX)
186 X(IX) = X(IX) + TEMP*AP(K)
200 TEMP = X(J)
203 X(I) = X(I) + TEMP*AP(K)
215 TEMP = X(JX)
218 X(IX) = X(IX) + TEMP*AP(K)
236 TEMP = X(J
    [all...]
ztpsv.f 109 DOUBLE COMPLEX TEMP
173 TEMP = X(J)
176 X(I) = X(I) - TEMP*AP(K)
187 TEMP = X(JX)
191 X(IX) = X(IX) - TEMP*AP(K)
204 TEMP = X(J)
207 X(I) = X(I) - TEMP*AP(K)
218 TEMP = X(JX)
222 X(IX) = X(IX) - TEMP*AP(K)
238 TEMP = X(J
    [all...]
  /external/bluetooth/bluedroid/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/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/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]
  /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...]
  /device/asus/flo/conn_init/
wfc_util_common.c 53 char temp; local
66 temp = pAsciiString[i];
68 if (temp >= '0' && temp <= '9') {
69 temp = temp - '0';
70 } else if ( temp >= 'a' && temp <= 'f' ) {
71 temp = temp - 'a' + 10
    [all...]
  /device/lge/mako/conn_init/
wfc_util_common.c 53 char temp; local
66 temp = pAsciiString[i];
68 if (temp >= '0' && temp <= '9') {
69 temp = temp - '0';
70 } else if ( temp >= 'a' && temp <= 'f' ) {
71 temp = temp - 'a' + 10
    [all...]

Completed in 198 milliseconds

1 2 3 45 6 7 8 91011>>