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

<<21222324252627282930>>

  /external/ltp/testcases/kernel/timers/clock_settime/
clock_settime03.c 61 static struct timespec spec, *temp, saved; variable in typeref:struct:
80 TEST(ltp_syscall(__NR_clock_settime, clocks[i], temp));
121 temp = &spec;
127 temp = (struct timespec *)-1;
  /external/protobuf/src/google/protobuf/stubs/
atomicops_internals_ppc_gcc.h 83 Atomic32 temp; local
87 "lwarx %[temp],0,%[ptr] \n\t"
88 "add %[temp],%[increment],%[temp] \n\t"
89 "stwcx. %[temp],0,%[ptr] \n\t"
91 : [temp] "=&r"(temp)
95 return temp;
  /external/toybox/toys/lsb/
md5sum.c 140 unsigned int in, temp, swap; local
143 temp = x[1];
144 temp = (temp & x[2]) | ((~temp) & x[3]);
147 temp = x[3];
148 temp = (x[1] & temp) | (x[2] & ~temp);
151 temp = x[1] ^ x[2] ^ x[3]
174 unsigned *rot[5], *temp; local
    [all...]
  /external/zlib/src/contrib/minizip/
crypt.h 37 unsigned temp; /* POTENTIAL BUG: temp*(temp^1) may overflow in an local
41 temp = ((unsigned)(*(pkeys+2)) & 0xffff) | 2;
42 return (int)(((temp * (temp ^ 1)) >> 8) & 0xff);
  /frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
spstproc.cpp 194 Word16 temp; local
293 * temp Q0 Q0
305 temp = (Word16)(L_temp >> 14);
308 temp += (Word16)(L_temp >> kShift);
310 mem_w0[j] = xn[i] - temp;
  /frameworks/base/obex/javax/obex/
PrivateInputStream.java 150 byte[] temp = new byte[length];
152 System.arraycopy(mData, mIndex, temp, 0, mData.length - mIndex);
153 System.arraycopy(body, start, temp, mData.length - mIndex, body.length - start);
155 mData = temp;
  /frameworks/base/tools/aapt2/tools/
fix_resources.py 51 with tempfile.NamedTemporaryFile(prefix=basename, dir=dirname, delete=False) as temp:
52 temp_name = temp.name
53 temp.write(contents)
54 os.rename(temp.name, file_path)
  /hardware/qcom/camera/msm8998/usbcamcore/inc/
QCameraUsbPriv.h 87 char temp[1001] = {0};\
90 strlcpy(temp,parms+n,1000);\
91 ALOGD("parms = %s", temp);\
92 if (strlen(temp) < 1000) break;\
  /libcore/ojluni/src/main/java/java/security/spec/
ECFieldF2m.java 98 BigInteger temp = this.rp.clearBit(0).clearBit(m); local
101 int index = temp.getLowestSetBit();
103 temp = temp.clearBit(index);
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/stubs/
atomicops_internals_mips_gcc.h 77 Atomic32 temp, old; local
82 "move %0, %3\n" // temp = new_value
83 "sc %0, %2\n" // *ptr = temp (with atomic check)
87 : "=&r" (temp), "=&r" (old), "=m" (*ptr)
98 Atomic32 temp, temp2; local
103 "ll %0, %2\n" // temp = *ptr
104 "addu %1, %0, %3\n" // temp2 = temp + increment
107 "addu %1, %0, %3\n" // temp2 = temp + increment
109 : "=&r" (temp), "=&r" (temp2), "=m" (*ptr)
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/stubs/
atomicops_internals_mips_gcc.h 77 Atomic32 temp, old; local
82 "move %0, %3\n" // temp = new_value
83 "sc %0, %2\n" // *ptr = temp (with atomic check)
87 : "=&r" (temp), "=&r" (old), "=m" (*ptr)
98 Atomic32 temp, temp2; local
103 "ll %0, %2\n" // temp = *ptr
104 "addu %1, %0, %3\n" // temp2 = temp + increment
107 "addu %1, %0, %3\n" // temp2 = temp + increment
109 : "=&r" (temp), "=&r" (temp2), "=m" (*ptr)
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/stubs/
atomicops_internals_mips_gcc.h 77 Atomic32 temp, old; local
82 "move %0, %3\n" // temp = new_value
83 "sc %0, %2\n" // *ptr = temp (with atomic check)
87 : "=&r" (temp), "=&r" (old), "=m" (*ptr)
98 Atomic32 temp, temp2; local
103 "ll %0, %2\n" // temp = *ptr
104 "addu %1, %0, %3\n" // temp2 = temp + increment
107 "addu %1, %0, %3\n" // temp2 = temp + increment
109 : "=&r" (temp), "=&r" (temp2), "=m" (*ptr)
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/stubs/
atomicops_internals_mips_gcc.h 77 Atomic32 temp, old; local
82 "move %0, %3\n" // temp = new_value
83 "sc %0, %2\n" // *ptr = temp (with atomic check)
87 : "=&r" (temp), "=&r" (old), "=m" (*ptr)
98 Atomic32 temp, temp2; local
103 "ll %0, %2\n" // temp = *ptr
104 "addu %1, %0, %3\n" // temp2 = temp + increment
107 "addu %1, %0, %3\n" // temp2 = temp + increment
109 : "=&r" (temp), "=&r" (temp2), "=m" (*ptr)
  /toolchain/binutils/binutils-2.27/zlib/contrib/minizip/
crypt.h 37 unsigned temp; /* POTENTIAL BUG: temp*(temp^1) may overflow in an local
41 temp = ((unsigned)(*(pkeys+2)) & 0xffff) | 2;
42 return (int)(((temp * (temp ^ 1)) >> 8) & 0xff);
  /external/toybox/toys/pending/
xzcat.c 469 } temp; member in struct:xz_dec_bcj
806 * Flush pending filtered data from temp to the output buffer.
808 * data to the beginning of temp.
814 copy_size = minof(s->temp.filtered, b->out_size - b->out_pos);
815 memcpy(b->out + b->out_pos, s->temp.buf, copy_size);
818 s->temp.filtered -= copy_size;
819 s->temp.size -= copy_size;
820 memmove(s->temp.buf, s->temp.buf + copy_size, s->temp.size)
1431 } temp; member in struct:xz_dec_lzma2
2458 } temp; member in struct:xz_dec
    [all...]
  /art/runtime/
method_info.h 51 uint8_t temp[8]; local
52 uint8_t* ptr = temp;
54 return (ptr - temp) + num_method_indices * sizeof(MethodIndexType);
  /cts/tests/tests/systemui/src/android/systemui/cts/
ColorUtils.java 40 int temp = Math.min(b, Math.min(r, g)); local
44 if (V == temp) {
47 final float vtemp = (float) (V - temp);
  /device/linaro/bootloader/edk2/StdLib/LibC/StdLib/
NumericInt.c 189 int temp; local
235 while( isalnum(*nptr) && ((temp = Digit2Val(*nptr)) < base)) {
237 Result = (Result * base) + (long int)temp;
278 int temp; local
318 while( isalnum(*nptr) && ((temp = Digit2Val(*nptr)) < base)) {
320 Result = (Result * base) + (unsigned long)temp;
353 int temp; local
399 while( isalnum(*nptr) && ((temp = Digit2Val(*nptr)) < base)) {
401 Result = (Result * base) + (long long int)temp;
442 int temp; local
    [all...]
  /external/e2fsprogs/ext2ed/
ext2_com.c 54 char temp [80],buffer [80],*ptr; local
70 sprintf (temp,"cd %s",buffer+1);dispatch (temp);
  /external/google-breakpad/src/common/mac/
string_utilities.cc 57 string digits("0123456789"), temp;
69 temp = str.substr(start, end - start);
72 result = atoi(temp.c_str());
  /external/google-breakpad/src/common/windows/
dia_util.cc 80 void* temp = NULL; local
81 if (SUCCEEDED(temp_table->QueryInterface(iid, &temp))) {
82 *table = temp;
  /external/icu/icu4c/source/tools/genrb/
rbutil.c 76 char temp; local
108 temp = buffer[(length-1) - j];
110 buffer[j] = temp;
  /external/libxaac/decoder/
ixheaacd_stereo.c 175 WORD32 temp, shift_val; local
176 temp = *l_spec++;
178 shift_val = ixheaacd_norm32(temp);
179 temp = ixheaacd_shl32(temp, shift_val);
181 temp = ixheaacd_mult32x16in32l(temp, scale);
185 temp = ixheaacd_shl32_sat(temp, -shift_val);
187 temp = ixheaacd_shr32(temp, shift_val)
    [all...]
  /external/ltp/testcases/kernel/syscalls/nftw/
lib.c 36 extern FILE *temp;
64 temp = stderr;
102 temp = stderr;
105 fprintf(temp, "TEST: %s fails with ENAMETOOLONG\n", name);
182 temp = stderr;
190 fprintf(temp, "INFO: pathconf(_PC_PATH_MAX) for %s is %lu\n",
252 temp = stderr;
255 fprintf(temp, "TEST: ENOENT when empty string is passed\n");
296 temp = stderr;
298 fprintf(temp, "TEST: ENOTDIR when a component is not a directory\n")
    [all...]
lib64.c 36 extern FILE *temp;
64 temp = stderr;
103 temp = stderr;
105 fprintf(temp, "TEST: %s fails with ENAMETOOLONG\n", name);
182 temp = stderr;
190 fprintf(temp, "INFO: pathconf(_PC_PATH_MAX) for %s is %lu\n",
253 temp = stderr;
255 fprintf(temp, "TEST: ENOENT when empty string is passed\n");
296 temp = stderr;
298 fprintf(temp, "TEST: ENOTDIR when a component is not a directory\n")
    [all...]

Completed in 409 milliseconds

<<21222324252627282930>>