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

12 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/gallium/state_trackers/vega/
asm_fill.h 36 struct ureg_dst *temp,
44 struct ureg_dst *temp,
55 ureg_MOV(ureg, ureg_writemask(temp[0], TGSI_WRITEMASK_XY), in[0]); \
57 ureg_writemask(temp[0], TGSI_WRITEMASK_Z), \
59 ureg_DP3(ureg, temp[1], constant[4], ureg_src(temp[0])); \
60 ureg_DP3(ureg, temp[2], constant[5], ureg_src(temp[0])); \
61 ureg_DP3(ureg, temp[3], constant[6], ureg_src(temp[0]));
    [all...]
  /external/dng_sdk/source/
dng_xy_coord.cpp 49 dng_xy_coord temp = coord; local
55 temp.x = Pin_real64 (0.000001, temp.x, 0.999999);
56 temp.y = Pin_real64 (0.000001, temp.y, 0.999999);
58 if (temp.x + temp.y > 0.999999)
60 real64 scale = 0.999999 / (temp.x + temp.y);
61 temp.x *= scale
    [all...]
  /external/mesa3d/src/gallium/tests/graw/vertex-shader/
vert-dp3.sh 7 DCL TEMP[0]
11 DP3 TEMP[0].xy, IN[0], IN[0]
12 MOV TEMP[0].zw, IMM[0]
13 MUL OUT[0], IN[0], TEMP[0]
vert-dp4.sh 7 DCL TEMP[0]
11 DP4 TEMP[0].xy, IN[0], IN[0]
12 MOV TEMP[0].zw, IMM[0]
13 MUL OUT[0], IN[0], TEMP[0]
vert-abs.sh 7 DCL TEMP[0]
11 ADD TEMP[0], IN[0], IMM[0]
12 ABS OUT[0], TEMP[0]
vert-frc.sh 7 DCL TEMP[0]
11 MUL TEMP[0], IN[0].xyxw, IMM[0]
13 FRC OUT[1], TEMP[0]
vert-lrp.sh 8 DCL TEMP[0]
10 ABS TEMP[0], IN[0]
12 LRP OUT[1], TEMP[0], IN[1].xxxx, IN[1].yyyy
vert-sge.sh 8 DCL TEMP[0]
12 SGE TEMP[0], IN[0], IMM[0]
14 MUL OUT[1], IN[1], TEMP[0]
vert-slt.sh 8 DCL TEMP[0]
12 SLT TEMP[0], IN[0], IMM[0]
14 MUL OUT[1], IN[1], TEMP[0]
vert-srcmod-abs.sh 7 DCL TEMP[0]
11 ADD TEMP[0], IN[0], IMM[0]
12 MOV OUT[0], |TEMP[0]|
vert-srcmod-absneg.sh 7 DCL TEMP[0]
11 ADD TEMP[0], IN[0], IMM[0]
12 MOV OUT[0].xy, -|TEMP[0]|
  /external/libvpx/libvpx/vp8/common/
swapyv12buffer.c 16 unsigned char *temp; local
18 temp = last_frame->buffer_alloc;
20 new_frame->buffer_alloc = temp;
22 temp = last_frame->y_buffer;
24 new_frame->y_buffer = temp;
26 temp = last_frame->u_buffer;
28 new_frame->u_buffer = temp;
30 temp = last_frame->v_buffer;
32 new_frame->v_buffer = temp;
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/
swapyv12buffer.c 16 unsigned char *temp; local
18 temp = last_frame->buffer_alloc;
20 new_frame->buffer_alloc = temp;
22 temp = last_frame->y_buffer;
24 new_frame->y_buffer = temp;
26 temp = last_frame->u_buffer;
28 new_frame->u_buffer = temp;
30 temp = last_frame->v_buffer;
32 new_frame->v_buffer = temp;
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/
viddec_intr.c 22 uint32_t reg=0, temp=0; local
23 temp = reg_read(INT_STATUS);
24 //DEBUG_WRITE(0xff, temp, timer, 0, 0, 0);
25 if(temp & INT_WDOG_ENABLE)
31 if(temp & 0x4)
34 temp = temp & (~0x4);
35 reg_write(INT_REG, temp);
41 if(temp & 0x2)
44 temp = temp & (~0x2)
    [all...]
  /external/clang/test/CXX/temp/temp.spec/temp.explicit/
p12.cpp 17 template <class T> class Temp {
18 static Temp<A::Public> make() { return Temp<A::Public>(); }
20 template class Temp<A::Private>;
25 template class Temp<A::Private> Temp<int>::make();
38 template <class T> class Temp {
39 static Temp<A::Public> make();
41 template <> class Temp<A::Private> {
43 Temp(int x) {
    [all...]
  /external/selinux/libsemanage/src/
semanageswig_ruby.i 21 %typemap(in, numinputs=0) char **(char *temp=NULL) {
22 $1 = &temp;
30 %typemap(in, numinputs=0) char ***(char **temp=NULL) {
31 $1 = &temp;
36 %typemap(in, numinputs=0) semanage_module_info_t **(semanage_module_info_t *temp=NULL) {
37 $1 = &temp;
48 %typemap(in, numinputs=0) semanage_context_t **(semanage_context_t *temp=NULL) {
49 $1 = &temp;
60 %typemap(in, numinputs=0) semanage_bool_t ***(semanage_bool_t **temp=NULL) {
61 $1 = &temp;
    [all...]
utilities.c 80 Ustr *ustr = USTR_NULL, *temp = USTR_NULL; local
86 temp =
89 if (!temp)
92 ustr_sc_free(&temp);
95 temp = ustr_dup_subustr(ustr, off + 1, rside_len);
96 if (!temp)
98 retval = strdup(ustr_cstr(temp));
99 ustr_sc_free(&temp);
108 Ustr *ustr = USTR_NULL, *temp = USTR_NULL; local
117 temp
139 semanage_list_t *temp = NULL; local
179 semanage_list_t *temp; local
201 semanage_list_t *temp = NULL; local
275 semanage_list_t *temp = malloc(sizeof(semanage_list_t)); local
    [all...]
  /hardware/bsp/intel/peripheral/libupm/
.gitignore 11 # Temp files
  /external/libmicrohttpd/contrib/
ascebc 2 iconv -f UTF-8 -t IBM-1047 $1 > temp.file
6 mv temp.file $1
10 mv temp.file $1
  /external/lzma/C/
Sort.c 8 #define HeapSortDown(p, k, size, temp) \
13 if (temp >= p[s]) break; \
15 } p[k] = temp; }
26 UInt32 temp = p[i]; local
28 HeapSortDown(p, k, size, temp)
36 UInt32 temp = p[size];
38 HeapSortDown(p, k, size, temp)
44 UInt32 temp = p[size]; local
48 HeapSortDown(p, k, size, temp)
51 UInt32 temp = p[size]; local
72 UInt64 temp = p[i]; local
90 UInt64 temp = p[size]; local
97 UInt64 temp = p[size]; local
    [all...]
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
chkder.h 28 Scalar temp; local
36 temp = eps * abs(x[j]);
37 if (temp == 0.)
38 temp = eps;
39 xp[j] = x[j] + temp;
46 temp = abs(x[j]);
47 if (temp == 0.)
48 temp = 1.;
49 err += temp * fjac.col(j);
52 temp = 1.
    [all...]
  /external/libchrome/base/
base64.cc 14 std::string temp; local
15 temp.resize(modp_b64_encode_len(input.size())); // makes room for null byte
17 // modp_b64_encode_len() returns at least 1, so temp[0] is safe to use.
18 size_t output_size = modp_b64_encode(&(temp[0]), input.data(), input.size());
20 temp.resize(output_size); // strips off null byte
21 output->swap(temp);
25 std::string temp; local
26 temp.resize(modp_b64_decode_len(input.size()));
30 size_t output_size = modp_b64_decode(&(temp[0]), input.data(), input_size);
34 temp.resize(output_size)
    [all...]
  /external/mesa3d/src/gallium/tests/graw/geometry-shader/
multi-line.txt 9 DCL TEMP[0]
11 MOV TEMP[0], IN[0][0]
12 ADD TEMP[0].y, IN[0][0], IN[1][0]
14 MOV OUT[0], TEMP[0]
23 MOV OUT[0], TEMP[0]
28 MOV OUT[0], TEMP[0]
37 MOV OUT[0], TEMP[0]
  /external/toybox/toys/other/
tac.c 25 struct arg_list *temp; local
30 temp = xmalloc(sizeof(struct arg_list));
31 temp->next = list;
32 temp->arg = c;
33 list = temp;
38 struct arg_list *temp = list->next; local
42 list = temp;
  /external/opencv3/modules/core/src/opencl/
reduce.cl 172 dstT temp = convertToDT(loadpix(srcptr + src_index)); \
174 temp = SUM_ABS2(temp, temp2); \
177 FUNC(accumulator, temp)
180 dstT temp = convertToDT(loadpix(srcptr + src_index)); \
182 temp = SUM_ABS2(temp, temp2); \
183 FUNC(accumulator, temp)
187 dstT temp = convertToDT(loadpix(srcptr + src_index)); \
188 FUNC(accumulator, temp)
    [all...]

Completed in 228 milliseconds

12 3 4 5 6 7 8 91011>>