HomeSort by relevance Sort by last modified time
    Searched refs:tbuf (Results 1 - 25 of 74) sorted by null

1 2 3

  /external/strace/
times.c 43 tms_t tbuf; local
48 if (!umove_or_printaddr(tcp, tcp->u_arg[0], &tbuf)) {
50 zero_extend_signed_to_ull(tbuf.tms_utime),
51 zero_extend_signed_to_ull(tbuf.tms_stime));
53 zero_extend_signed_to_ull(tbuf.tms_cutime),
54 zero_extend_signed_to_ull(tbuf.tms_cstime));
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
regposerr.c 80 char tbuf[35]; local
91 sprintf_s(tbuf, sizeof(tbuf), "undefined error code (%d)", posix_ecode);
92 s = tbuf;
  /external/strace/tests/
times.c 92 struct tms tbuf; local
108 long res = syscall(__NR_times, &tbuf);
115 register long arg asm("rdi") = (long) &tbuf;
123 clock_t res = times(&tbuf);
134 (unsigned long long) tbuf.tms_utime,
135 (unsigned long long) tbuf.tms_stime);
137 (unsigned long long) tbuf.tms_cutime,
138 (unsigned long long) tbuf.tms_cstime,
  /external/strace/tests-m32/
times.c 92 struct tms tbuf; local
108 long res = syscall(__NR_times, &tbuf);
115 register long arg asm("rdi") = (long) &tbuf;
123 clock_t res = times(&tbuf);
134 (unsigned long long) tbuf.tms_utime,
135 (unsigned long long) tbuf.tms_stime);
137 (unsigned long long) tbuf.tms_cutime,
138 (unsigned long long) tbuf.tms_cstime,
  /external/strace/tests-mx32/
times.c 92 struct tms tbuf; local
108 long res = syscall(__NR_times, &tbuf);
115 register long arg asm("rdi") = (long) &tbuf;
123 clock_t res = times(&tbuf);
134 (unsigned long long) tbuf.tms_utime,
135 (unsigned long long) tbuf.tms_stime);
137 (unsigned long long) tbuf.tms_cutime,
138 (unsigned long long) tbuf.tms_cstime,
  /external/ipsec-tools/src/racoon/
logger.h 41 time_t *tbuf; member in struct:log
logger.c 82 p->tbuf = (time_t *)racoon_malloc(sizeof(time_t *) * siz);
83 if (p->tbuf == NULL) {
88 memset(p->tbuf, 0, sizeof(time_t *) * siz);
111 p->tbuf[p->head] = time(NULL);
197 tm = localtime(&p->tbuf[j]);
220 racoon_free(p->tbuf);
security.c 72 vchar_t *tbuf = NULL; local
117 tbuf = isakmp_parsewoh(ISAKMP_NPTYPE_T, (struct isakmp_gen *)bp, len);
118 if (tbuf == NULL)
121 ta = (struct isakmp_parse_t *)tbuf->v;
  /external/icu/icu4c/source/common/
cstring.cpp 159 char tbuf[30]; local
160 int32_t tbx = sizeof(tbuf);
173 tbx = sizeof(tbuf)-1;
174 tbuf[tbx] = 0; /* We are generating the digits backwards. Null term the end. */
177 tbuf[--tbx] = (char)(T_CString_itosOffset(digit));
182 uprv_strcpy(buffer+length, tbuf+tbx);
183 length += sizeof(tbuf) - tbx -1;
197 char tbuf[30]; local
198 int32_t tbx = sizeof(tbuf);
211 tbx = sizeof(tbuf)-1
    [all...]
  /external/libvpx/libvpx/vpx_dsp/x86/
transpose_sse2.h 226 __m128i tbuf[8]; local
228 transpose_16bit_8x8(right, tbuf);
232 left[8] = tbuf[0];
233 left[9] = tbuf[1];
234 left[10] = tbuf[2];
235 left[11] = tbuf[3];
236 left[12] = tbuf[4];
237 left[13] = tbuf[5];
238 left[14] = tbuf[6];
239 left[15] = tbuf[7]
    [all...]
  /external/eigen/unsupported/test/
FFTW.cpp 86 ScalarVector tbuf(nfft);
89 tbuf[k]= (T)( rand()/(double)RAND_MAX - .5);
94 fft.fwd( freqBuf,tbuf);
96 VERIFY( T(fft_rmse(freqBuf,tbuf)) < test_precision<T>() );// gross check
99 fft.fwd( freqBuf,tbuf);
101 VERIFY( T(fft_rmse(freqBuf,tbuf)) < test_precision<T>() );// gross check
108 VERIFY( T(dif_rmse(tbuf,tbuf2)) < test_precision<T>() );// gross check
121 //for (size_t i=0;i<(size_t) tbuf.size();++i)
122 // cout << "freqBuf=" << freqBuf[i] << " in2=" << tbuf3[i] << " - in=" << tbuf[i] << " => " << (tbuf3[i] - tbuf[i] ) << endl
    [all...]
  /external/boringssl/src/crypto/evp/
p_rsa.c 87 // tbuf is a buffer which is either NULL, or is the size of the RSA modulus.
89 uint8_t *tbuf; member in struct:__anon14301
155 OPENSSL_free(rctx->tbuf);
161 if (ctx->tbuf) {
164 ctx->tbuf = OPENSSL_malloc(EVP_PKEY_size(pk->pkey));
165 if (!ctx->tbuf) {
232 !RSA_verify_raw(rsa, &rslen, rctx->tbuf, key_len, sig, siglen,
235 CRYPTO_memcmp(tbs, rctx->tbuf, rslen) != 0) {
283 if (!RSA_verify_raw(rsa, &rslen, rctx->tbuf, key_len, sig, sig_len,
287 CRYPTO_memcmp(rctx->tbuf, asn1_prefix, asn1_prefix_len - hash_len) != 0)
    [all...]
  /device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
gethostbydns.c 208 char tbuf[MAXDNAME]; local
299 n = dn_expand(answer->buf, eom, cp, tbuf, sizeof tbuf);
300 if ((n < 0) || !(*name_ok)(tbuf)) {
319 n = (int)strlen(tbuf) + 1; /* for the \0 */
324 strcpy(bp, tbuf);
331 n = dn_expand(answer->buf, eom, cp, tbuf, sizeof tbuf);
332 if (n < 0 || !res_dnok(tbuf)) {
342 n = (int)strlen(tbuf) + 1; /* for the \0 */
    [all...]
  /libcore/ojluni/src/main/java/java/util/jar/
Manifest.java 370 byte[] tbuf = this.buf;
387 while (tpos < maxpos && tbuf[tpos++] != '\n') ;
389 System.arraycopy(tbuf, pos, b, off, n);
393 if (tbuf[tpos-1] == '\n') {
  /external/pdfium/third_party/libtiff/
tif_luv.c 166 uint8* tbuf; /* translation buffer */ member in struct:logLuvState
211 tp = (int16*) sp->tbuf;
284 tp = (uint32 *) sp->tbuf;
345 tp = (uint32*) sp->tbuf;
459 tp = (int16*) sp->tbuf;
552 tp = (uint32*) sp->tbuf;
610 tp = (uint32*) sp->tbuf;
784 int16* l16 = (int16*) sp->tbuf;
794 int16* l16 = (int16*) sp->tbuf;
806 int16* l16 = (int16*) sp->tbuf;
    [all...]
tif_pixarlog.c 463 uint16 *tbuf; member in struct:__anon31513
699 sp->tbuf = (uint16 *) _TIFFmalloc(tbuf_size);
700 if (sp->tbuf == NULL)
706 _TIFFfree(sp->tbuf);
707 sp->tbuf = NULL;
716 _TIFFfree(sp->tbuf);
717 sp->tbuf = NULL;
791 sp->stream.next_out = (unsigned char *) sp->tbuf;
839 up = sp->tbuf;
917 sp->tbuf = (uint16 *) _TIFFmalloc(tbuf_size)
    [all...]
  /external/libusb/libusb/
descriptor.c 1143 unsigned char tbuf[255]; \/* Some devices choke on size > 255 *\/ local
    [all...]
  /external/oj-libjdwp/src/share/back/
log_messages.c 57 get_time_stamp(char *tbuf, size_t ltbuf)
69 (void)snprintf(tbuf, ltbuf, format, (int)(millisecs));
  /hardware/invensense/6515/libsensors_iio/
CompassSensor.IIO.9150.cpp 405 char tbuf[2]; local
409 tbuf[0] = num + 0x30;
410 tbuf[1] = 0;
411 sprintf(sysfs_path, "%s%s", "sys/class/input/input", tbuf);
CompassSensor.IIO.primary.cpp 521 char sysfs_path[MAX_SYSFS_NAME_LEN], tbuf[2]; local
545 tbuf[0] = num + 0x30;
546 tbuf[1] = 0;
547 sprintf(sysfs_path, "%s%s", "sys/class/input/input", tbuf);
  /hardware/invensense/65xx/libsensors_iio/
CompassSensor.IIO.9150.cpp 376 char tbuf[2]; local
380 tbuf[0] = num + 0x30;
381 tbuf[1] = 0;
382 sprintf(sysfs_path, "%s%s", "sys/class/input/input", tbuf);
CompassSensor.IIO.primary.cpp 487 char sysfs_path[MAX_SYSFS_NAME_LEN], tbuf[2]; local
511 tbuf[0] = num + 0x30;
512 tbuf[1] = 0;
513 sprintf(sysfs_path, "%s%s", "sys/class/input/input", tbuf);
  /external/libcxx/src/experimental/filesystem/
operations.cpp 601 struct ::timeval tbuf[2]; local
602 tbuf[0].tv_sec = atime.tv_sec;
603 tbuf[0].tv_usec = duration_cast<microseconds>(nanoseconds(atime.tv_nsec)).count();
605 &tbuf[1].tv_sec, &tbuf[1].tv_usec, new_time);
612 if (::utimes(p.c_str(), tbuf) == -1) {
616 struct ::timespec tbuf[2]; local
617 tbuf[0].tv_sec = 0;
618 tbuf[0].tv_nsec = UTIME_OMIT;
621 &tbuf[1].tv_sec, &tbuf[1].tv_nsec, new_time)
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/src/experimental/filesystem/
operations.cpp 565 struct ::timeval tbuf[2]; local
566 tbuf[0].tv_sec = atime.tv_sec;
567 tbuf[0].tv_usec = duration_cast<microseconds>(nanoseconds(atime.tv_nsec)).count();
569 &tbuf[1].tv_sec, &tbuf[1].tv_usec, new_time);
576 if (::utimes(p.c_str(), tbuf) == -1) {
580 struct ::timespec tbuf[2]; local
581 tbuf[0].tv_sec = 0;
582 tbuf[0].tv_nsec = UTIME_OMIT;
585 &tbuf[1].tv_sec, &tbuf[1].tv_nsec, new_time)
    [all...]
  /toolchain/binutils/binutils-2.27/bfd/
vms-misc.c 452 static unsigned char tbuf[18];
464 sprintf ((char *) tbuf, "%2s-%3s-%s %s",
473 Descriptor.Ptr = tbuf;
477 vms_debug2 ((6, "vmstimestring:'%s'\n", tbuf));
479 return tbuf;
450 static unsigned char tbuf[18]; local

Completed in 1148 milliseconds

1 2 3