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

1 2

  /dalvik/vm/compiler/codegen/arm/
ArchUtility.cpp 82 char tbuf[256]; local
92 strcpy(tbuf, "!");
100 sprintf(tbuf, ", %s %d",shiftNames[operand & 0x3],
103 strcpy(tbuf,"");
130 strcpy(tbuf, name);
133 strcpy(tbuf,"0000");
135 tbuf[i] += operand & 1;
141 sprintf(tbuf,"%d [%#x]", operand, operand);
145 sprintf(tbuf,"%d [%#x]", operand, operand);
148 sprintf(tbuf,"s%d",operand & FP_REG_MASK)
    [all...]
  /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/icu4c/common/
cstring.c 146 char tbuf[30]; local
147 int32_t tbx = sizeof(tbuf);
160 tbx = sizeof(tbuf)-1;
161 tbuf[tbx] = 0; /* We are generating the digits backwards. Null term the end. */
164 tbuf[--tbx] = (char)(T_CString_itosOffset(digit));
169 uprv_strcpy(buffer+length, tbuf+tbx);
170 length += sizeof(tbuf) - tbx -1;
184 char tbuf[30]; local
185 int32_t tbx = sizeof(tbuf);
198 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;
  /bionic/libc/unistd/
syslog.c 114 char *stdp = NULL, tbuf[TBUF_LEN], fmt_cpy[FMT_LEN]; local
144 p = tbuf;
226 cnt = p - tbuf;
233 iov[0].iov_len = cnt - (stdp - tbuf);
252 if ((error = send(data->log_file, tbuf, cnt, 0)) < 0) {
259 if ((error = send(data->log_file, tbuf, cnt, 0)) >= 0)
273 p = strchr(tbuf, '>') + 1;
275 iov[0].iov_len = cnt - (p - tbuf);
  /external/openssh/
sftp-common.c 195 char buf[1024], mode[11+1], tbuf[12+1], ubuf[11+1], gbuf[11+1]; local
213 sz = strftime(tbuf, sizeof tbuf, "%b %e %H:%M", ltime);
215 sz = strftime(tbuf, sizeof tbuf, "%b %e %Y", ltime);
218 tbuf[0] = '\0';
225 sbuf, tbuf, name);
229 (unsigned long long)st->st_size, tbuf, name);
  /external/openssl/crypto/rsa/
rsa_pmeth.c 93 unsigned char *tbuf; member in struct:__anon10094
107 rctx->tbuf = NULL;
139 if (ctx->tbuf)
141 ctx->tbuf = OPENSSL_malloc(EVP_PKEY_size(pk->pkey));
142 if (!ctx->tbuf)
154 if (rctx->tbuf)
155 OPENSSL_free(rctx->tbuf);
242 memcpy(rctx->tbuf, tbs, tbslen);
243 rctx->tbuf[tbslen] =
245 ret = RSA_private_encrypt(tbslen + 1, rctx->tbuf,
    [all...]
  /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/strace/
resource.c 457 struct tms tbuf; local
464 else if (umove(tcp, tcp->u_arg[0], &tbuf) < 0)
468 tbuf.tms_utime, tbuf.tms_stime);
470 tbuf.tms_cutime, tbuf.tms_cstime);
  /external/grub/netboot/
lance.c 88 unsigned char tbuf[ETH_FRAME_LEN]; member in struct:lance_interface
345 memcpy(lp->tbuf, d, ETH_ALEN); /* dst */
346 memcpy(&lp->tbuf[ETH_ALEN], nic->node_addr, ETH_ALEN); /* src */
347 lp->tbuf[ETH_ALEN+ETH_ALEN] = t >> 8; /* type */
348 lp->tbuf[ETH_ALEN+ETH_ALEN+1] = t; /* type */
349 memcpy(&lp->tbuf[ETH_HLEN], p, s);
353 lp->tbuf[s++] = 0;
357 lp->tx_ring.u.base = virt_to_bus(lp->tbuf) & 0xffffff;
  /bionic/libc/netbsd/
gethnamaddr.c 183 char tbuf[MAXDNAME]; local
272 n = dn_expand(answer->buf, eom, cp, tbuf, sizeof tbuf);
273 if ((n < 0) || !(*name_ok)(tbuf)) {
291 n = strlen(tbuf) + 1; /* for the \0 */
296 strlcpy(bp, tbuf, (size_t)(ep - bp));
302 n = dn_expand(answer->buf, eom, cp, tbuf, sizeof tbuf);
303 if (n < 0 || !res_dnok(tbuf)) {
313 n = strlen(tbuf) + 1; /* for the \0 *
    [all...]
  /external/webkit/Source/WebCore/loader/
FTPDirectoryParser.cpp 125 char tbuf[4]; local
558 tbuf[0] = p[0];
559 tbuf[1] = toASCIILower(p[1]);
560 tbuf[2] = toASCIILower(p[2]);
564 if (tbuf[0] == month_names[pos+0] &&
565 tbuf[1] == month_names[pos+1] &&
566 tbuf[2] == month_names[pos+2])
    [all...]
  /external/quake/quake/src/QW/client/
console.c 158 char tbuf[CON_TEXTSIZE]; local
188 Q_memcpy (tbuf, con->text, CON_TEXTSIZE);
196 tbuf[((con->current - i + oldtotallines) %
  /external/quake/quake/src/WinQuake/
console.cpp 156 char tbuf[CON_TEXTSIZE]; local
186 Q_memcpy (tbuf, con_text, CON_TEXTSIZE);
194 tbuf[((con_current - i + oldtotallines) %
  /gdk/samples/quake/jni/
console.cpp 156 char tbuf[CON_TEXTSIZE]; local
186 Q_memcpy (tbuf, con_text, CON_TEXTSIZE);
194 tbuf[((con_current - i + oldtotallines) %
  /external/openssl/crypto/objects/
obj_dat.c 472 char tbuf[DECIMAL_SIZE(i)+DECIMAL_SIZE(l)+2]; local
597 BIO_snprintf(tbuf,sizeof tbuf,".%lu",l);
598 i=strlen(tbuf);
601 BUF_strlcpy(buf,tbuf,buf_len);
  /external/skia/src/opts/
SkBlitRow_opts_arm.cpp 1420 char tbuf[32]; local
1433 char tbuf[32]; local
    [all...]
  /external/mksh/src/
expr.c 242 char tbuf[2]; local
259 tbuf[0] = *es->tokp;
260 tbuf[1] = '\0';
261 s = tbuf;
misc.c 591 char tbuf[64]; local
592 char *t = len <= sizeof(tbuf) ? tbuf : alloc(len, ATEMP);
    [all...]
  /bionic/libc/netbsd/net/
getaddrinfo.c 1318 char tbuf[MAXDNAME]; local
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
run.c 107 char *tbuf; local
113 tbuf = (char *) realloc(*pbuf, minlen);
114 dprintf( ("adjbuf %s: %d %d (pbuf=%p, tbuf=%p)\n", whatrtn, *psiz, minlen, *pbuf, tbuf) );
115 if (tbuf == NULL) {
120 *pbuf = tbuf;
123 *pbptr = tbuf + boff;
    [all...]
  /external/libpng/
pngwrite.c 447 struct tm *tbuf; local
451 tbuf = gmtime(&ttime);
452 png_convert_from_struct_tm(ptime, tbuf);
    [all...]

Completed in 948 milliseconds

1 2