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

1 2 3

  /external/strace/
times.c 42 tms_t tbuf; local
47 if (!umove_or_printaddr(tcp, tcp->u_arg[0], &tbuf)) {
49 zero_extend_signed_to_ull(tbuf.tms_utime),
50 zero_extend_signed_to_ull(tbuf.tms_stime));
52 zero_extend_signed_to_ull(tbuf.tms_cutime),
53 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 91 struct tms tbuf; local
107 long res = syscall(__NR_times, &tbuf);
114 register long arg asm("rdi") = (long) &tbuf;
122 clock_t res = times(&tbuf);
133 (unsigned long long) tbuf.tms_utime,
134 (unsigned long long) tbuf.tms_stime);
136 (unsigned long long) tbuf.tms_cutime,
137 (unsigned long long) tbuf.tms_cstime,
  /external/strace/tests-m32/
times.c 91 struct tms tbuf; local
107 long res = syscall(__NR_times, &tbuf);
114 register long arg asm("rdi") = (long) &tbuf;
122 clock_t res = times(&tbuf);
133 (unsigned long long) tbuf.tms_utime,
134 (unsigned long long) tbuf.tms_stime);
136 (unsigned long long) tbuf.tms_cutime,
137 (unsigned long long) tbuf.tms_cstime,
  /external/strace/tests-mx32/
times.c 91 struct tms tbuf; local
107 long res = syscall(__NR_times, &tbuf);
114 register long arg asm("rdi") = (long) &tbuf;
122 clock_t res = times(&tbuf);
133 (unsigned long long) tbuf.tms_utime,
134 (unsigned long long) tbuf.tms_stime);
136 (unsigned long long) tbuf.tms_cutime,
137 (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;
racoonctl.c 1099 char tbuf[56]; local
1195 strftime(tbuf, sizeof(tbuf), "%Y-%m-%d %T", tm);
1197 snprintf(tbuf, sizeof(tbuf), " ");
1198 printf("%s ", tbuf);
1314 char tbuf[56]; local
1325 strftime(tbuf, sizeof(tbuf), "%Y-%m-%d %T", tm);
1331 tbuf);
    [all...]
  /external/icu/icu4c/source/common/
cstring.c 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/openssh/openbsd-compat/
vis.c 169 char tbuf[5]; local
189 i = vis(tbuf, c, flag, *++src) - tbuf;
191 memcpy(dst, tbuf, i);
204 dst += vis(tbuf, c, flag, *++src) - tbuf;
  /external/openssh/
sftp-common.c 219 char buf[1024], mode[11+1], tbuf[12+1], ubuf[11+1], gbuf[11+1]; local
240 sz = strftime(tbuf, sizeof tbuf, "%b %e %H:%M", ltime);
242 sz = strftime(tbuf, sizeof tbuf, "%b %e %Y", ltime);
245 tbuf[0] = '\0';
252 sbuf, tbuf, name);
256 (unsigned long long)st->st_size, tbuf, name);
  /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:__anon13318
150 OPENSSL_free(rctx->tbuf);
156 if (ctx->tbuf) {
159 ctx->tbuf = OPENSSL_malloc(EVP_PKEY_size(pk->pkey));
160 if (!ctx->tbuf) {
205 !RSA_padding_add_PKCS1_PSS_mgf1(rsa, rctx->tbuf, tbs, rctx->md,
207 !RSA_sign_raw(rsa, siglen, sig, *siglen, rctx->tbuf, key_len,
241 !RSA_verify_raw(rsa, &rslen, rctx->tbuf, key_len, sig, siglen,
244 rctx->tbuf, rctx->saltlen))
    [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...]
  /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/libvpx/libvpx/vpx_dsp/x86/
inv_txfm_sse2.h 107 __m128i tbuf[8]; local
109 array_transpose_8x8(res1, tbuf);
113 res0[8] = tbuf[0];
114 res0[9] = tbuf[1];
115 res0[10] = tbuf[2];
116 res0[11] = tbuf[3];
117 res0[12] = tbuf[4];
118 res0[13] = tbuf[5];
119 res0[14] = tbuf[6];
120 res0[15] = tbuf[7]
    [all...]
  /external/pdfium/third_party/libtiff/
tif_luv.c 165 uint8* tbuf; /* translation buffer */ member in struct:logLuvState
210 tp = (int16*) sp->tbuf;
283 tp = (uint32 *) sp->tbuf;
344 tp = (uint32*) sp->tbuf;
454 tp = (int16*) sp->tbuf;
547 tp = (uint32*) sp->tbuf;
605 tp = (uint32*) sp->tbuf;
775 int16* l16 = (int16*) sp->tbuf;
785 int16* l16 = (int16*) sp->tbuf;
797 int16* l16 = (int16*) sp->tbuf;
    [all...]
  /external/libusb/libusb/
descriptor.c 1143 unsigned char tbuf[255]; \/* Some devices choke on size > 255 *\/ local
    [all...]
  /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);
  /toolchain/binutils/binutils-2.25/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
  /external/libcxx/src/experimental/filesystem/
operations.cpp 698 struct ::timeval tbuf[2]; local
699 tbuf[0].tv_sec = atime.tv_sec;
700 tbuf[0].tv_usec = duration_cast<microseconds>(nanoseconds(atime.tv_nsec)).count();
702 &tbuf[1].tv_sec, &tbuf[1].tv_usec, new_time);
709 if (::utimes(p.c_str(), tbuf) == -1) {
713 struct ::timespec tbuf[2]; local
714 tbuf[0].tv_sec = 0;
715 tbuf[0].tv_nsec = UTIME_OMIT;
718 &tbuf[1].tv_sec, &tbuf[1].tv_nsec, new_time)
    [all...]

Completed in 2603 milliseconds

1 2 3