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

1 2 3 45 6 7 8 91011>>

  /libcore/luni/src/main/java/java/math/
Division.java 56 long temp = (rem << 32) | (dividend[i] & 0xffffffffL); local
58 if (temp >= 0) {
59 quot = (temp / bLong);
60 rem = (temp % bLong);
66 long aPos = temp >>> 1;
71 rem = (rem << 1) + (temp & 1);
  /packages/apps/SecureElement/src/com/android/se/security/gpac/
Response_AR_DO.java 86 BerTlv temp = BerTlv.decode(data, currentPos); local
88 if (temp.getTag() == AR_DO.TAG) { // AR-DO tag
89 mArDo = new AR_DO(data, temp.getValueIndex(), temp.getValueLength());
97 currentPos = temp.getValueIndex() + temp.getValueLength();
Response_ARAC_AID_DO.java 87 BerTlv temp; local
91 temp = BerTlv.decode(data, currentPos);
95 if (temp.getTag() == AID_REF_DO.TAG
96 || temp.getTag() == AID_REF_DO.TAG_DEFAULT_APPLICATION) {
98 new AID_REF_DO(data, temp.getTag(), temp.getValueIndex(),
99 temp.getValueLength());
108 currentPos = temp.getValueIndex() + temp.getValueLength();
REF_DO.java 106 BerTlv temp = BerTlv.decode(data, index); local
108 if (temp.getTag() == AID_REF_DO.TAG
109 || temp.getTag() == AID_REF_DO.TAG_DEFAULT_APPLICATION) { // AID-REF-DO
110 mAidDo = new AID_REF_DO(data, temp.getTag(), temp.getValueIndex(),
111 temp.getValueLength());
113 } else if (temp.getTag() == Hash_REF_DO.TAG) { // Hash-REF-DO
114 mHashDo = new Hash_REF_DO(data, temp.getValueIndex(), temp.getValueLength());
121 index = temp.getValueIndex() + temp.getValueLength()
140 ByteArrayOutputStream temp = new ByteArrayOutputStream(); local
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/perl5/
typemaps.i 59 %typemap(in) type *INPUT(type temp), type &INPUT(type temp) {
60 temp = (type) converter($input);
61 $1 = &temp;
78 %typemap(in) bool *INPUT(bool temp), bool &INPUT(bool temp) {
79 temp = SvIV($input) ? true : false;
80 $1 = &temp;
85 %typemap(in) long long *INPUT($*1_ltype temp), long long &INPUT($*1_ltype temp) {
    [all...]
  /external/curl/lib/
getenv.c 39 char *temp = getenv(variable);
41 if(temp != NULL)
42 ExpandEnvironmentStringsA(temp, env, sizeof(env));
  /frameworks/base/graphics/java/android/graphics/
TemporaryBuffer.java 40 public static void recycle(char[] temp) {
41 if (temp.length > 1000) return;
44 sTemp = temp;
  /external/libcups/cups/
getifaddrs.c 37 struct ifaddrs *temp; /* Pointer to current interface */ local
114 if ((temp = calloc(1, sizeof(struct ifaddrs))) == NULL)
129 temp->ifa_next = *addrs;
130 *addrs = temp;
131 temp->ifa_name = strdup(ifp->ifr_name);
132 temp->ifa_flags = request.ifr_flags;
133 if ((temp->ifa_addr = calloc(1, sockaddr_len(&(ifp->ifr_addr)))) != NULL)
134 memcpy(temp->ifa_addr, &(ifp->ifr_addr), sockaddr_len(&(ifp->ifr_addr)));
146 if ((temp->ifa_netmask = calloc(1, sizeof(request.ifr_netmask))) != NULL)
147 memcpy(temp->ifa_netmask, &(request.ifr_netmask)
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/util/
Math.java 6 long temp = b; local
8 a = temp;
15 int temp = b; local
17 a = temp;
  /external/selinux/libselinux/src/
exception.sh 18 if ! ${CC:-gcc} -x c -c -I../include - -aux-info temp.aux < ../include/selinux/selinux.h
21 gcc -x c -c -I../include - -aux-info temp.aux < ../include/selinux/selinux.h
23 for i in `awk '/<stdin>.*extern int/ { print $6 }' temp.aux`; do except $i ; done
24 rm -f -- temp.aux -.o
  /external/selinux/libsemanage/src/
exception.sh 12 if ! ${CC:-gcc} -x c -c -I../include - -aux-info temp.aux < ../include/semanage/semanage.h
15 gcc -x c -c -I../include - -aux-info temp.aux < ../include/semanage/semanage.h
17 for i in `awk '/extern int/ { print $6 }' temp.aux`; do except $i ; done
18 rm -f -- temp.aux -.o
  /external/toybox/tests/
blkid.test 9 bzcat "$BDIR"/squashfs.bz2 > temp.img
10 testing "file" "blkid temp.img" 'temp.img: TYPE="squashfs"\n' "" ""
11 rm temp.img
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/car/hvac/
TemperatureView.java 26 * @param temp - The current temp or NaN
28 void setTemp(float temp);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
SharedPreset.java 32 ImagePreset temp = mIntermediatePreset; local
34 mProducerPreset = temp;
42 ImagePreset temp = mConsumerPreset; local
44 mIntermediatePreset = temp;
  /toolchain/binutils/binutils-2.27/include/vms/
esdfm.h 38 unsigned char temp; member in struct:vms_esdfm
esdfv.h 38 unsigned char temp; member in struct:vms_esdfv
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
d_plsf_5.cpp 174 Word16 temp, sign;
196 // temp = mean_lsf[i] + st->past_r_q[i] * LSP_PRED_FAC_MR122;
198 temp = add (mean_lsf[i], mult (st->past_r_q[i],
201 st->past_r_q[i] = sub (lsf2_q[i], temp);
255 temp = add (mean_lsf[i], mult (st->past_r_q[i],
257 lsf1_q[i] = add (lsf1_r[i], temp);
258 lsf2_q[i] = add (lsf2_r[i], temp);
312 Word16 temp; local
333 temp =
348 temp,
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/guile/
pointer-in-out.i 49 %typemap(in, doc="$NAME is of type <" #SCM_TYPE ">") PTRTYPE *INPUT(PTRTYPE temp)
51 if (SWIG_ConvertPtr($input, (void **) &temp, $*descriptor, 0)) {
54 $1 = &temp;
57 %typemap(in, doc="$NAME is of type <" #SCM_TYPE "> and is consumed by the function") PTRTYPE *INPUT_CONSUMED(PTRTYPE temp)
59 if (SWIG_ConvertPtr($input, (void **) &temp, $*descriptor, 0)) {
63 $1 = &temp;
66 %typemap(in, doc="$NAME is of type <" #SCM_TYPE "> and is consumed by the function") PTRTYPE *INPUT_DESTROYED(PTRTYPE temp)
68 if (SWIG_ConvertPtr($input, (void **) &temp, $*descriptor, 0)) {
72 $1 = &temp;
75 %typemap(in, numinputs=0) PTRTYPE *OUTPUT(PTRTYPE temp),
    [all...]
  /external/ltp/testcases/kernel/syscalls/nftw/
test_func64.c 35 extern FILE *temp;
46 temp = stderr;
64 fprintf(temp, "INFO: Call to fn() at %s\n", path_name);
68 fprintf(temp, "ERROR: Too many paths traversed\n");
79 temp = stderr;
81 fprintf(temp, "INFO: Call to fn() at %s\n", path_name);
85 fprintf(temp, "ERROR: Too many paths traversed\n");
91 fprintf(temp,
118 temp = stderr;
128 fprintf(temp, "ERROR: For file %s cwd is %s\n", path_name
    [all...]
test.c 37 extern FILE *temp;
51 temp = stderr;
53 fprintf(temp, "TEST: nftw() succeeds\n");
68 fprintf(temp, "TEST: Whole tree traversed\n");
72 fprintf(temp, "ERROR: Count of objects visited incorrect\n");
73 fprintf(temp, " Expected %d, Received %d\n", ngoods,
92 fprintf(temp, "ERROR: Unexpected visit to %s\n",
111 temp = stderr;
113 fprintf(temp,
131 fprintf(temp,
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
autocorr.cpp 321 Word16 temp; local
343 temp = (amrnb_fxp_mac_16_by_16bb((Word32) * (p_x++), (Word32) * (p_wind++), 0x04000)) >> 15;
344 *(p_y++) = temp;
346 sum += ((Word32)temp * temp) << 1;
370 temp = (amrnb_fxp_mac_16_by_16bb((Word32) * (p_x++), (Word32) * (p_wind++), 0x04000)) >> 15;
371 *(p_y++) = temp;
396 temp = *p_y >> 2;
397 *(p_y++) = temp;
398 sum += ((Word32)temp * temp) << 1
    [all...]
  /external/ltp/testcases/misc/math/atof/
atof01.c 60 FILE *temp; variable
76 setup(); /* temp file is now open */
86 fprintf(temp, "output conversion incorrect.");
87 fprintf(temp, "%*.*f = '%s'", i, j, pi, buf);
92 fprintf(temp, "\tnumin('%s') failed\n", buf);
97 fprintf(temp, "\tcompare fails, %f vs %f\n",
99 fprintf(temp, "\terr value is %f\n", x);
114 fprintf(temp, "\tsprintf small # failed\n");
115 fprintf(temp, "\t printed '%s', expected 1.0\n", buf);
128 fprintf(temp, "\tnumin('%s') failed\n", buf)
    [all...]
  /external/google-breakpad/src/testing/gtest/samples/
sample2.cc 53 const char* const temp = MyString::CloneCString(a_c_string); local
55 c_string_ = temp;
  /external/googletest/googletest/samples/
sample2.cc 53 const char* const temp = MyString::CloneCString(a_c_string); local
55 c_string_ = temp;
  /external/protobuf/gtest/samples/
sample2.cc 53 const char* const temp = MyString::CloneCString(a_c_string); local
55 c_string_ = temp;

Completed in 767 milliseconds

1 2 3 45 6 7 8 91011>>