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

1 2

  /external/strace/
times.c 42 tms_t tbuf; local
47 if (!umove_or_printaddr(tcp, tcp->u_arg[0], &tbuf)) {
49 (unsigned long long) tbuf.tms_utime,
50 (unsigned long long) tbuf.tms_stime);
52 (unsigned long long) tbuf.tms_cutime,
53 (unsigned long long) tbuf.tms_cstime);
  /external/ipsec-tools/src/racoon/
logger.h 41 time_t *tbuf; member in struct:log
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/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/icu/icu4c/source/common/
cstring.c 157 char tbuf[30]; local
158 int32_t tbx = sizeof(tbuf);
171 tbx = sizeof(tbuf)-1;
172 tbuf[tbx] = 0; /* We are generating the digits backwards. Null term the end. */
175 tbuf[--tbx] = (char)(T_CString_itosOffset(digit));
180 uprv_strcpy(buffer+length, tbuf+tbx);
181 length += sizeof(tbuf) - tbx -1;
195 char tbuf[30]; local
196 int32_t tbx = sizeof(tbuf);
209 tbx = sizeof(tbuf)-1
    [all...]
  /external/libvpx/libvpx/vpx_dsp/x86/
inv_txfm_sse2.h 77 __m128i tbuf[8]; local
79 array_transpose_8x8(res1, tbuf);
83 res0[8] = tbuf[0];
84 res0[9] = tbuf[1];
85 res0[10] = tbuf[2];
86 res0[11] = tbuf[3];
87 res0[12] = tbuf[4];
88 res0[13] = tbuf[5];
89 res0[14] = tbuf[6];
90 res0[15] = tbuf[7]
    [all...]
  /external/javassist/src/main/javassist/compiler/
Lex.java 126 StringBuffer tbuf = textBuffer; local
127 tbuf.setLength(0);
128 tbuf.append('.');
129 return readDouble(tbuf, c, token);
211 StringBuffer tbuf = textBuffer; local
212 tbuf.setLength(0);
222 tbuf.append((char)c);
239 token.textValue = tbuf.toString();
297 StringBuffer tbuf = textBuffer; local
298 tbuf.setLength(0)
430 StringBuffer tbuf = textBuffer; 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);
  /external/boringssl/src/crypto/evp/
p_rsa.c 86 /* tbuf is a buffer which is either NULL, or is the size of the RSA modulus.
88 uint8_t *tbuf; member in struct:__anon6685
149 OPENSSL_free(rctx->tbuf);
155 if (ctx->tbuf) {
158 ctx->tbuf = OPENSSL_malloc(EVP_PKEY_size(pk->pkey));
159 if (!ctx->tbuf) {
204 !RSA_padding_add_PKCS1_PSS_mgf1(rsa, rctx->tbuf, tbs, rctx->md,
206 !RSA_sign_raw(rsa, siglen, sig, *siglen, rctx->tbuf, key_len,
235 !RSA_verify_raw(rsa, &rslen, rctx->tbuf, key_len, sig, siglen,
238 rctx->tbuf, rctx->saltlen))
    [all...]
  /external/boringssl/src/crypto/obj/
obj.c 413 char tbuf[DECIMAL_SIZE(i) + DECIMAL_SIZE(l) + 2]; local
529 BIO_snprintf(tbuf, sizeof(tbuf), ".%lu", l);
530 i = strlen(tbuf);
532 BUF_strlcpy(out, tbuf, out_len);
  /external/libusb/libusb/
descriptor.c 678 unsigned char tbuf[255]; /* Some devices choke on size > 255 */ local
686 r = libusb_get_string_descriptor(dev, 0, 0, tbuf, sizeof(tbuf));
693 langid = tbuf[2] | (tbuf[3] << 8);
695 r = libusb_get_string_descriptor(dev, desc_index, langid, tbuf,
696 sizeof(tbuf));
700 if (tbuf[1] != LIBUSB_DT_STRING)
703 if (tbuf[0] > r)
706 for (di = 0, si = 2; si < tbuf[0]; si += 2)
    [all...]
  /external/opencv3/3rdparty/libpng/
pngwrite.c 440 struct tm *tbuf; local
444 tbuf = gmtime(&ttime);
445 png_convert_from_struct_tm(ptime, tbuf);
    [all...]
  /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/libpng/
pngwrite.c 476 struct tm *tbuf; local
480 tbuf = gmtime(&ttime);
481 png_convert_from_struct_tm(ptime, tbuf);
    [all...]
  /external/opencv3/3rdparty/libtiff/
tif_pixarlog.c 460 uint16 *tbuf; member in struct:__anon20999
676 sp->tbuf = (uint16 *) _TIFFmalloc(tbuf_size+sizeof(uint16));
677 if (sp->tbuf == NULL)
757 sp->stream.next_out = (unsigned char *) sp->tbuf;
796 up = sp->tbuf;
874 sp->tbuf = (uint16 *) _TIFFmalloc(tbuf_size);
875 if (sp->tbuf == NULL)
    [all...]
tif_luv.c 165 uint8* tbuf; /* translation buffer */ member in struct:logLuvState
206 tp = (int16*) sp->tbuf;
272 tp = (uint32 *) sp->tbuf;
329 tp = (uint32*) sp->tbuf;
429 tp = (int16*) sp->tbuf;
517 tp = (uint32*) sp->tbuf;
570 tp = (uint32*) sp->tbuf;
728 int16* l16 = (int16*) sp->tbuf;
738 int16* l16 = (int16*) sp->tbuf;
750 int16* l16 = (int16*) sp->tbuf;
    [all...]
  /external/pdfium/third_party/libtiff/
tif_pixarlog.c 460 uint16 *tbuf; member in struct:__anon22277
692 sp->tbuf = (uint16 *) _TIFFmalloc(tbuf_size);
693 if (sp->tbuf == NULL)
773 sp->stream.next_out = (unsigned char *) sp->tbuf;
812 up = sp->tbuf;
890 sp->tbuf = (uint16 *) _TIFFmalloc(tbuf_size);
891 if (sp->tbuf == NULL)
1135 for (i = 0, up = sp->tbuf; i < n; i += llen, up += llen) {
    [all...]
  /external/pdfium/third_party/lpng_v163/
pngwrite.c 465 struct tm *tbuf; local
469 tbuf = gmtime(&ttime);
470 png_convert_from_struct_tm(ptime, tbuf);
    [all...]
  /bionic/libc/dns/net/
gethnamaddr.c 213 char tbuf[MAXDNAME]; local
299 n = dn_expand(answer->buf, eom, cp, tbuf,
300 (int)sizeof tbuf);
301 if ((n < 0) || !maybe_ok(res, tbuf, name_ok)) {
317 n = (int)strlen(tbuf) + 1; /* for the \0 */
322 strlcpy(bp, tbuf, (size_t)(ep - bp));
328 n = dn_expand(answer->buf, eom, cp, tbuf,
329 (int)sizeof tbuf);
330 if (n < 0 || !maybe_dnok(res, tbuf)) {
338 n = (int)strlen(tbuf) + 1; /* for the \0 *
    [all...]
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
APIInfo.java 442 StringBuilder tbuf = new StringBuilder(); local
446 tbuf.append(sig.substring(i));
449 tbuf.append(sig.substring(i, n));
452 xsig = tbuf.toString();
  /external/mksh/src/
expr.c 253 char tbuf[2]; local
270 tbuf[0] = *es->tokp;
271 tbuf[1] = '\0';
272 s = tbuf;

Completed in 1041 milliseconds

1 2