HomeSort by relevance Sort by last modified time
    Searched refs:temp (Results 276 - 300 of 2455) sorted by null

<<11121314151617181920>>

  /external/webp/src/dsp/
upsampling_msa.c 336 uint8_t temp[3 * 16] = { 0 }; local
337 memcpy(temp, y, length * sizeof(*temp));
338 CALC_RGB16(temp, u, v, R, G, B);
339 STORE16_3(R, G, B, temp);
340 memcpy(dst, temp, length * 3 * sizeof(*dst));
342 uint8_t temp[3 * 8] = { 0 }; local
343 memcpy(temp, y, length * sizeof(*temp));
344 CALC_RGB8(temp, u, v, R, G, B)
363 uint8_t temp[3 * 16] = { 0 }; local
369 uint8_t temp[3 * 8] = { 0 }; local
392 uint8_t temp[4 * 16] = { 0 }; local
398 uint8_t temp[4 * 8] = { 0 }; local
420 uint8_t temp[4 * 16] = { 0 }; local
426 uint8_t temp[4 * 8] = { 0 }; local
449 uint8_t temp[4 * 16] = { 0 }; local
455 uint8_t temp[4 * 8] = { 0 }; local
479 uint8_t temp[2 * 16] = { 0 }; local
488 uint8_t temp[2 * 8] = { 0 }; local
515 uint8_t temp[2 * 16] = { 0 }; local
524 uint8_t temp[2 * 8] = { 0 }; local
    [all...]
  /external/libaom/libaom/third_party/libyuv/source/
row_any.cc 29 SIMD_ALIGNED(uint8 temp[64 * 4]); \
30 memset(temp, 0, 64 * 3); /* for YUY2 and msan */ \
36 memcpy(temp, y_buf + n, r); \
37 memcpy(temp + 64, u_buf + (n >> UVSHIFT), SS(r, UVSHIFT)); \
38 memcpy(temp + 128, v_buf + (n >> UVSHIFT), SS(r, UVSHIFT)); \
39 ANY_SIMD(temp, temp + 64, temp + 128, temp + 192, MASK + 1); \
40 memcpy(dst_ptr + (n >> DUVSHIFT) * BPP, temp + 192,
    [all...]
  /external/epid-sdk/tools/extractgrps/src/
main.c 162 EpidBinaryGroupCertificate temp; local
164 seek_failed = fseek(file, i * sizeof(temp), SEEK_SET);
165 bytes_read = fread(&temp, 1, sizeof(temp), file);
166 if (seek_failed || bytes_read != sizeof(temp)) {
172 if (memcmp(&kEpidVersionCode[kEpid2x], &temp.header.epid_version,
173 sizeof(temp.header.epid_version)) ||
174 memcmp(&kEpidFileTypeCode[kGroupPubKeyFile], &temp.header.file_type,
175 sizeof(temp.header.file_type))) {
187 if (0 != WriteLoud(&temp, sizeof(temp), outkeyname))
    [all...]
  /external/ltp/testcases/kernel/syscalls/nftw/
tools.c 34 extern FILE *temp;
70 FILE *temp = stderr; local
75 fprintf(temp, "ERROR: setup_path function failed\n");
84 fprintf(temp,
94 fprintf(temp,
104 fprintf(temp,
113 fprintf(temp,
126 fprintf(temp, "ERROR: setup_path function failed\n");
134 fprintf(temp, "ERROR: setup_path function failed\n");
142 fprintf(temp, "ERROR: setup_path function failed\n")
    [all...]
  /external/mesa3d/src/compiler/nir/
nir_lower_io_to_temporaries.c 50 nir_variable *temp = exec_node_data(nir_variable, old_node, node); local
56 if (temp->data.mode == nir_var_shader_out &&
57 !temp->data.fb_fetch_output)
70 copy->variables[1] = nir_deref_var_create(copy, temp);
131 nir_variable *temp = var; local
138 /* Give the original a new name with @<mode>-temp appended */
139 const char *mode = (temp->data.mode == nir_var_shader_in) ? "in" : "out";
140 temp->name = ralloc_asprintf(var, "%s@%s-temp", mode, nvar->name);
141 temp->data.mode = nir_var_global
    [all...]
  /external/guava/guava-tests/test/com/google/common/io/
FilesTest.java 174 File temp = createTempFile(); local
175 Files.write(I18N, temp, Charsets.UTF_16LE);
176 assertEquals(I18N, Files.toString(temp, Charsets.UTF_16LE));
180 File temp = createTempFile(); local
182 Files.write(data, temp);
183 assertTrue(Arrays.equals(data, Files.toByteArray(temp)));
186 Files.write(null, temp);
193 File temp = createTempFile(); local
194 Files.append(I18N, temp, Charsets.UTF_16LE);
195 assertEquals(I18N, Files.toString(temp, Charsets.UTF_16LE))
218 File temp = createTempFile(); local
237 File temp = createTempFile(); local
262 File temp = createTempFile(); local
306 File temp = createTempFile(); local
331 File temp = createTempFile(); local
355 File temp = createTempFile(); local
416 File temp = Files.createTempDir(); local
501 File temp = createTempFile(); local
520 File temp = createTempFile(); local
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
qpisf_2s.c 66 Word32 i, k, temp, min_err, distance; local
87 temp = min_err;
89 temp = vo_L_add(temp, min_err);
91 temp = vo_L_add(temp, min_err);
93 if(temp < distance)
95 distance = temp;
117 temp = min_err;
119 temp = vo_L_add(temp, min_err)
156 Word32 temp, min_err, distance; local
451 Word16 temp, *p_dico; local
498 Word16 temp, *p_dico; local
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
FastMath.java 306 double temp = ya * HEX_40000000; local
307 double yaa = ya + temp - temp;
312 temp = recip * HEX_40000000;
313 double recipa = recip + temp - temp;
322 temp = ya + recipa;
323 yb += -(temp - ya - recipa);
324 ya = temp;
325 temp = ya + recipb
370 double temp = ya * HEX_40000000; local
411 double temp = ratio * HEX_40000000; local
484 double temp = na + yb; local
530 double temp = da + yb; local
872 double temp = tempA + tempB; local
893 double temp = za + zb; local
2003 final double temp = sinEpsA * HEX_40000000; local
2147 double temp = sinEpsA * HEX_40000000; local
2815 double temp = 1.0\/xa; local
2822 double temp = epsA + epsB; local
3045 double temp = ra + rb; local
3087 double temp = x * HEX_40000000; local
3163 double temp = x * HEX_40000000; local
3271 double temp = est * HEX_40000000; local
    [all...]
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/translit/
WriteIndicCharts.java 105 String[] temp = (String[])table.get(UTF16.valueOf(i)); local
107 for(int k=1;k<temp.length && temp[k]!=null;k++){
108 if(UCharacter.getExtendedName(UTF16.charAt(temp[k],0)).indexOf("unassigned")<0 ||
109 temp[k].indexOf(":UNASSIGNED")<0){
115 for(int j=0; j<temp.length;j++){
116 if(temp[j]!=null){
121 String str = temp[j];
123 if(temp[j].indexOf(":FALLBACK")>=0){
124 str = temp[j].substring(0,temp[j].indexOf(":"))
248 String[] temp = (String[])table.get(UTF16.valueOf(i)); local
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_buffer.c 145 unsigned temp[4]; local
147 temp[0] = ((uint32_t *)rgba[c])[j];
148 format_desc->pack_rgba_uint(dptr, 0, temp, 0, 1, 1);
172 unsigned temp[4]; local
174 format_desc->fetch_rgba_uint(temp, dptr, 0, 0);
175 sdata[c] = temp[0];
188 unsigned temp = sdata[c]; local
190 ((uint32_t *)rgba[c])[qi] = temp;
195 unsigned temp = sdata[c]; local
197 ((uint32_t *)rgba[c])[qi] = temp;
205 unsigned temp = sdata[c]; local
212 unsigned temp = sdata[c]; local
219 unsigned temp = sdata[c]; local
226 unsigned temp = sdata[c]; local
270 unsigned temp[4]; local
    [all...]
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_bicubic_filter.c 79 struct ureg_dst temp[11]; local
84 temp[i] = ureg_DECL_temporary(shader);
88 * |temp[0]| | 0 2 0 0 | |tex_a|
89 * |temp[1]| = | -1 0 1 0 |* |tex_b|
90 * |temp[2]| | 2 -5 4 -1 | |tex_c|
91 * |temp[3]| | -1 3 -3 1 | |tex_d|
93 ureg_MUL(shader, temp[0], tex_b, ureg_imm1f(shader, 2.0f));
95 ureg_MUL(shader, temp[1], tex_a, ureg_imm1f(shader, -1.0f));
96 ureg_MAD(shader, temp[1], tex_c, ureg_imm1f(shader, 1.0f),
97 ureg_src(temp[1]))
    [all...]
  /cts/apps/CtsVerifier/include/colorchecker/
vec2.h 34 Vec2<T> temp(mX + param.x(), mY + param.y());
35 return temp;
39 Vec2<T> temp(mX - param.x(), mY - param.y());
40 return temp;
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMAxisIteratorBase.java 83 final boolean temp = _isRestartable;
89 _isRestartable = temp;
134 final int temp = _position; // Save state local
145 _position = temp;
  /external/autotest/client/cros/
certificate_util.py 33 with tempfile.NamedTemporaryFile() as temp:
34 temp.write(self._pem_contents)
35 temp.flush()
38 (self.OPENSSL_COMMAND, attribute, temp.name))
  /external/catch2/include/internal/
catch_approx.cpp 40 auto temp(*this);
41 temp.m_value = -temp.m_value;
42 return temp;
  /external/eigen/unsupported/Eigen/src/NonLinearOptimization/
r1mpyq.h 15 Scalar temp = v_givens[j].c() * a[i+m*j] - v_givens[j].s() * a[i+m*(n-1)]; local
17 a[i+m*j] = temp;
22 Scalar temp = w_givens[j].c() * a[i+m*j] + w_givens[j].s() * a[i+m*(n-1)]; local
24 a[i+m*j] = temp;
  /external/emma/core/java12/com/vladium/emma/
AppLoggers.java 55 Set temp = null; local
62 temp = new HashSet (tokenizer.countTokens ());
65 temp.add (tokenizer.nextToken ());
70 filter = temp;
  /external/libcups/cups/
snprintf.c 43 temp[1024]; /* Buffer for formatted numbers */ local
44 size_t templen; /* Length of "temp" */
176 if ((width + 2) > sizeof(temp))
179 sprintf(temp, tformat, va_arg(ap, double));
180 templen = strlen(temp):
188 strlcpy(bufptr, temp, (size_t)(bufend - bufptr));
193 memcpy(bufptr, temp, templen + 1);
207 if ((width + 2) > sizeof(temp))
210 sprintf(temp, tformat, va_arg(ap, int));
211 templen = strlen(temp)
    [all...]
  /external/libopus/silk/float/
find_LTP_FLP.c 47 silk_float xx, temp; local
56 temp = 1.0f / silk_max( xx, LTP_CORR_INV_MAX * 0.5f * ( XX_ptr[ 0 ] + XX_ptr[ 24 ] ) + 1.0f );
57 silk_scale_vector_FLP( XX_ptr, temp, LTP_ORDER * LTP_ORDER );
58 silk_scale_vector_FLP( xX_ptr, temp, LTP_ORDER );
  /external/ltp/testcases/lib/
tst_checkpoint.c 37 unsigned long temp; local
41 temp = strtoul(arg, &e, 10);
42 if (errno || (e == arg) || (temp > UINT_MAX)) {
48 *val = temp;
  /external/ltp/testcases/misc/math/abs/
abs01.c 56 FILE *temp; variable
71 setup(); /* temp file is now open */
78 fprintf(temp, "abs of minimum integer failed.");
88 fprintf(temp, "abs(0) failed, returned %lld\n", i);
116 temp = stderr;
  /external/lzma/CPP/Windows/
TimeUtils.cpp 61 unsigned temp;
77 temp = (unsigned)(v / PERIOD_100);
78 if (temp == 4)
79 temp = 3;
80 year += temp * 100;
81 v -= temp * PERIOD_100;
83 temp = v / PERIOD_4;
84 if (temp == 25)
85 temp = 24;
86 year += temp * 4;
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
ShellSorter.java 62 Type temp; local
72 temp = array[j];
77 } while ( j != start && comparator.compare(array[k], temp) > 0 );
78 array[j] = temp;
  /external/selinux/libselinux/src/
selinuxswig.i 36 %typemap(in, numinputs=0) (char ***) (char **temp=NULL) {
37 $1 = &temp;
selinuxswig_python.i 85 %typemap(in,numinputs=0) security_id_t *(security_id_t temp) {
86 $1 = &temp;
89 %typemap(in, numinputs=0) void *(char *temp=NULL) {
90 $1 = temp;
129 %typemap(in,noblock=1,numinputs=0) char ** (char * temp = 0) {
130 $1 = &temp;
144 %typemap(in,noblock=1,numinputs=0) char ** (char * temp = 0) {
145 $1 = &temp;

Completed in 1065 milliseconds

<<11121314151617181920>>