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

<<11121314151617181920>>

  /device/generic/goldfish/qemu-props/
qemu-props.c 85 char temp[BUFF_SIZE]; local
86 int len = qemud_channel_recv(qemud_fd, temp, sizeof temp - 1);
89 if (len < 0 || len > BUFF_SIZE-1 || temp[0] == '\0')
92 temp[len] = '\0'; /* zero-terminate string */
94 DD("received: %.*s", len, temp);
97 q = strchr(temp, '=');
104 if (property_set(temp, q) < 0) {
105 DD("could not set property '%s' to '%s'", temp, q);
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
p6.cpp 7 template<class A> void temp(A);
10 apply(0, &temp);
11 apply(0, &temp<>);
14 apply(0, &temp<int>);
17 apply(0, &temp<long>); // expected-error {{no matching function for call to 'apply'}}
55 template<class T> void temp(T);
58 invoke(&temp); // expected-error {{no matching function for call to 'invoke'}}
59 invoke(&temp<>); // expected-error {{no matching function for call to 'invoke'}}
62 invoke(&temp<int>);
  /external/emma/core/java14/com/vladium/util/
IJREVersion.java 60 boolean temp = false;
66 temp = true;
70 _JRE_1_3_PLUS = temp;
72 if (temp)
74 temp = false;
78 temp = true;
82 _JRE_1_4_PLUS = temp;
84 temp = false;
86 _JRE_SUN_SIGNAL_COMPATIBLE = temp;
  /external/selinux/policycoreutils/mcstrans/src/
mls_level.c 84 char temp[16]; local
91 len += snprintf(temp, sizeof(temp), "s%d", l->sens);
102 len += snprintf(temp, sizeof(temp), "c%d", i);
106 len += snprintf(temp, sizeof(temp), ".c%d", i-1);
113 len += snprintf(temp, sizeof(temp), ".c%d", i-1);
  /external/toybox/toys/other/
acpi.c 87 int dfd, temp; local
95 if ((0 < (temp = read_int_at(dfd, "temp"))) || !errno) {
98 if (((temp >= 1000) || (temp <= -1000)) && (temp%100 == 0)) temp /= 100;
99 printf("Thermal %d: %d.%d degrees C\n", TT.therm++, temp/10, temp%10);
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
FO_2I_D16F32Css_LShx_TRC_WRA_01_Init.c 44 LVM_INT16 temp; local
48 temp=pCoef->A1;
49 pBiquadState->coefs[0]=temp;
50 temp=pCoef->A0;
51 pBiquadState->coefs[1]=temp;
52 temp=pCoef->B1;
53 pBiquadState->coefs[2]=temp;
55 temp=pCoef->Shift;
56 pBiquadState->Shift = temp;
LVC_Core_MixSoft_1St_2i_D16C31_WRA.c 52 LVM_INT32 Temp;
61 ADD2_SAT_32x32(CurrentL,DeltaL,Temp); /* Q31 + Q31 into Q31*/
62 CurrentL=Temp;
75 ADD2_SAT_32x32(CurrentR,DeltaR,Temp); /* Q31 + Q31 into Q31*/
76 CurrentR=Temp;
101 ADD2_SAT_32x32(CurrentL,DeltaL,Temp); /* Q31 + Q31 into Q31*/
102 CurrentL=Temp;
115 ADD2_SAT_32x32(CurrentR,DeltaR,Temp); /* Q31 + Q31 into Q31*/
116 CurrentR=Temp;
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_utilities_geometry.h 55 const double *temp; local
60 temp= *X++;
61 cx+=temp[0];
62 cy+=temp[1];
101 const double *temp; local
106 temp= *X++;
107 cx+=temp[0];
108 cy+=temp[1];
109 cz+=temp[2];
db_utilities_indexing.cpp 38 double temp; local
51 temp= *(s_point++);
52 if(temp<pivot) *(d_bottom++)=temp;
53 else if(temp>pivot) *(d_top--)=temp;
59 double db_LeanQuickSelect(const double *s,long nr_elements,long pos,double *temp)
71 tempA=temp;
72 tempB=temp+nr_elements;
  /external/opencv3/modules/core/src/opencl/
minmaxloc.cl 70 if (minval > temp.p) \
72 minval = temp.p; \
77 minval = MIN(minval, temp.p);
86 if (maxval < temp.p) \
88 maxval = temp.p; \
93 maxval = MAX(maxval, temp.p);
167 dstT temp;
192 temp = convertToDT(loadpix(srcptr + src_index));
194 temp = MIN_ABS(temp);
    [all...]
  /prebuilts/misc/windows/sdl2/test/
testrendertarget.c 43 SDL_Surface *temp; local
47 temp = SDL_LoadBMP(file);
48 if (temp == NULL) {
55 if (temp->format->palette) {
56 SDL_SetColorKey(temp, SDL_TRUE, *(Uint8 *) temp->pixels);
58 switch (temp->format->BitsPerPixel) {
60 SDL_SetColorKey(temp, SDL_TRUE,
61 (*(Uint16 *) temp->pixels) & 0x00007FFF);
64 SDL_SetColorKey(temp, SDL_TRUE, *(Uint16 *) temp->pixels)
    [all...]
  /external/libmicrohttpd/src/microspdy/
structures.c 63 struct SPDY_NameValue *temp; local
143 temp = container;
144 while(NULL != temp->next)
145 temp = temp->next;
146 temp->next = pair;
147 pair->prev = temp;
194 struct SPDY_NameValue *temp = container; local
203 if(strcmp(name, temp->name) == 0)
205 *num_values = temp->num_values
221 struct SPDY_NameValue *temp = container; local
243 struct SPDY_NameValue *temp = container; local
465 int32_t temp; local
    [all...]
  /external/icu/icu4c/source/test/perf/strsrchperf/
strsrchperf.cpp 36 UChar* temp = (UChar*)malloc(sizeof(UChar)*(pttrnLen));
38 temp[i] = src[start++];
40 pttrn = temp; /* store word in pttrn */
55 UChar* temp = (UChar*)malloc(sizeof(UChar)*(pttrnLen)); local
57 temp[i] = src[start++];
59 pttrn = temp; /* store word in pttrn */
  /external/jacoco/org.jacoco.ant.test/src/org/jacoco/ant/
MergeTaskTest.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 <au:expectfailure expectedMessage="Unable to write merged file ${temp.dir}">
36 <jacoco:merge destfile="${temp.dir}"/>
  /external/mockito/src/org/mockito/internal/progress/
MockingProgressImpl.java 35 IOngoingStubbing temp = iOngoingStubbing; local
37 return temp;
58 VerificationMode temp = verificationMode.getObject(); local
60 return temp;
73 Location temp = stubbingInProgress; local
75 reporter.unfinishedStubbing(temp);
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
preemph.c 35 Word16 temp; local
38 temp = x[lg - 1];
51 *mem = temp;
64 Word16 temp; local
67 temp = x[lg - 1];
94 *mem = temp;
  /prebuilts/misc/common/swig/include/2.0.11/php/
utils.i 76 %typemap(in) const TYPE & ($*1_ltype temp)
78 CONVERT_IN(temp,$*1_ltype,$input);
79 $1 = &temp;
85 %typemap(directorout) const TYPE & ($*1_ltype temp)
87 CONVERT_IN(temp,$*1_ltype,$input);
88 $result = &temp;
  /prebuilts/misc/common/swig/include/2.0.11/pike/
std_string.i 28 %typemap(in, pikedesc="tStr") const string & ($*1_ltype temp) {
31 temp.assign(STR0($input.u.string));
32 $1 = &temp;
50 %typemap(directorout) const string & ($*1_ltype temp) {
52 temp.assign(STR0($input.u.string));
53 $result = &temp;
  /external/toybox/toys/pending/
fsck.c 89 struct f_sys_info *temp = filesys_info; local
90 if (temp) {
91 while (temp->next) temp = temp->next;
92 temp->next = xzalloc(sizeof(struct f_sys_info));
93 temp = temp->next;
94 } else filesys_info = temp = xzalloc(sizeof(struct f_sys_info));
96 temp->device = xstrdup(f_info->mnt_fsname)
254 struct child_list *prev, *temp; local
419 struct f_sys_info *finfo, *temp; local
    [all...]
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/devnode_parser/
iio_utils.h 261 struct iio_channel_info temp; local
267 temp = (*ci_array)[y + 1];
269 (*ci_array)[y] = temp;
440 char *temp = malloc(strlen(basedir) + strlen(filename) + 2); local
441 if (temp == NULL)
444 sprintf(temp, "%s/%s", basedir, filename);
447 printf("VERB: echo %d > %s\n", val, temp);
448 sysfsfp = fopen(temp, "w");
450 printf("failed to open %s\n", temp);
458 sysfsfp = fopen(temp, "r")
494 char *temp = malloc(strlen(basedir) + strlen(filename) + 2); local
554 char *temp = malloc(strlen(basedir) + strlen(filename) + 2); local
576 char *temp = malloc(strlen(basedir) + strlen(filename) + 2); local
    [all...]
  /hardware/invensense/6515/libsensors_iio/software/simple_apps/mpu_iio/
iio_utils.h 261 struct iio_channel_info temp; local
267 temp = (*ci_array)[y + 1];
269 (*ci_array)[y] = temp;
440 char *temp = malloc(strlen(basedir) + strlen(filename) + 2); local
441 if (temp == NULL)
444 sprintf(temp, "%s/%s", basedir, filename);
447 printf("VERB: echo %d > %s\n", val, temp);
448 sysfsfp = fopen(temp, "w");
450 printf("failed to open %s\n", temp);
458 sysfsfp = fopen(temp, "r")
494 char *temp = malloc(strlen(basedir) + strlen(filename) + 2); local
554 char *temp = malloc(strlen(basedir) + strlen(filename) + 2); local
576 char *temp = malloc(strlen(basedir) + strlen(filename) + 2); local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/content/pm/
LimitedLengthInputStreamTest.java 82 byte[] temp = new byte[TEST_STRING1.length];
89 assertEquals(length, is.read(temp, 0, temp.length));
91 System.arraycopy(temp, 0, actual, 0, length);
94 assertEquals(-1, is.read(temp, 0, temp.length));
122 byte[] temp = new byte[TEST_STRING1.length + 10];
124 assertEquals(TEST_STRING1.length, is.read(temp, 0, TEST_STRING1.length + 10));
127 System.arraycopy(temp, 0, actual, 0, actual.length);
132 byte[] temp = new byte[TEST_STRING1.length]
    [all...]
  /external/fdlibm/
e_jn.c 61 double a, b, temp, di; local
100 case 0: temp = ieee_cos(x)+ieee_sin(x); break;
101 case 1: temp = -ieee_cos(x)+ieee_sin(x); break;
102 case 2: temp = -ieee_cos(x)-ieee_sin(x); break;
103 case 3: temp = ieee_cos(x)-ieee_sin(x); break;
105 b = invsqrtpi*temp/ieee_sqrt(x);
110 temp = b;
112 a = temp;
123 temp = x*0.5; b = temp;
223 double a, b, temp; local
    [all...]
  /external/eigen/blas/fortran/
dtbmv.f 146 DOUBLE PRECISION TEMP
212 TEMP = X(J)
215 X(I) = X(I) + TEMP*A(L+I,J)
224 TEMP = X(JX)
228 X(IX) = X(IX) + TEMP*A(L+I,J)
241 TEMP = X(J)
244 X(I) = X(I) + TEMP*A(L+I,J)
254 TEMP = X(JX)
258 X(IX) = X(IX) + TEMP*A(L+I,J)
276 TEMP = X(J
    [all...]
stbmv.f 146 REAL TEMP
212 TEMP = X(J)
215 X(I) = X(I) + TEMP*A(L+I,J)
224 TEMP = X(JX)
228 X(IX) = X(IX) + TEMP*A(L+I,J)
241 TEMP = X(J)
244 X(I) = X(I) + TEMP*A(L+I,J)
254 TEMP = X(JX)
258 X(IX) = X(IX) + TEMP*A(L+I,J)
276 TEMP = X(J
    [all...]

Completed in 702 milliseconds

<<11121314151617181920>>