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

1 2

  /dalvik/vm/compiler/codegen/mips/
ArchUtility.cpp 40 char tbuf[256]; local
49 strcpy(tbuf, "!");
56 strcpy(tbuf,"0000");
58 tbuf[i] += operand & 1;
63 sprintf(tbuf,"$f%d",operand & FP_REG_MASK);
67 sprintf(tbuf,"$f%d",operand & FP_REG_MASK);
70 sprintf(tbuf,"%04x", operand);
74 sprintf(tbuf,"%d", operand);
77 sprintf(tbuf,"%d", operand+1);
80 sprintf(tbuf,"%d", operand*4)
    [all...]
  /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 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/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:__anon12674
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/eigen/unsupported/test/
FFTW.cpp 89 ScalarVector tbuf(nfft);
92 tbuf[k]= (T)( rand()/(double)RAND_MAX - .5);
97 fft.fwd( freqBuf,tbuf);
99 VERIFY( fft_rmse(freqBuf,tbuf) < test_precision<T>() );// gross check
102 fft.fwd( freqBuf,tbuf);
104 VERIFY( fft_rmse(freqBuf,tbuf) < test_precision<T>() );// gross check
111 VERIFY( dif_rmse(tbuf,tbuf2) < test_precision<T>() );// gross check
124 //for (size_t i=0;i<(size_t) tbuf.size();++i)
125 // cout << "freqBuf=" << freqBuf[i] << " in2=" << tbuf3[i] << " - in=" << tbuf[i] << " => " << (tbuf3[i] - tbuf[i] ) << endl
    [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/libusb_aah/libusb/
descriptor.c 681 unsigned char tbuf[255]; /* Some devices choke on size > 255 */ local
697 r = libusb_get_string_descriptor(dev, 0, 0, tbuf, sizeof(tbuf));
704 langid = tbuf[2] | (tbuf[3] << 8);
706 r = libusb_get_string_descriptor(dev, desc_index, langid, tbuf,
707 sizeof(tbuf));
711 if (tbuf[1] != LIBUSB_DT_STRING)
714 if (tbuf[0] > r)
717 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);
  /hardware/invensense/libsensors_iio/
CompassSensor.IIO.9150.cpp 335 char sysfs_path[MAX_SYSFS_NAME_LEN], iio_trigger_path[MAX_SYSFS_NAME_LEN], tbuf[2];
363 tbuf[0] = num + 0x30;
364 tbuf[1] = 0;
365 sprintf(sysfs_path, "%s%s", "sys/class/input/input", tbuf);
  /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;
  /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/skia/src/opts/
SkBlitRow_opts_arm_neon.cpp 606 char tbuf[32]; local
611 sprintf(tbuf, " %02x", pc[i]);
612 strcat(buf, tbuf);
619 char tbuf[32]; local
625 sprintf(tbuf, " %04x", pc[i]);
626 strcat(buf, tbuf);
    [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) %
  /bionic/libc/netbsd/
gethnamaddr.c 188 char tbuf[MAXDNAME]; local
277 n = dn_expand(answer->buf, eom, cp, tbuf, sizeof tbuf);
278 if ((n < 0) || !(*name_ok)(tbuf)) {
296 n = strlen(tbuf) + 1; /* for the \0 */
301 strlcpy(bp, tbuf, (size_t)(ep - bp));
307 n = dn_expand(answer->buf, eom, cp, tbuf, sizeof tbuf);
308 if (n < 0 || !res_dnok(tbuf)) {
318 n = strlen(tbuf) + 1; /* for the \0 *
    [all...]
  /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/legacy/src/opts/
SkBlitRow_opts_arm.cpp 1420 char tbuf[32]; local
1433 char tbuf[32]; local
    [all...]
  /external/libnfc-nci/halimpl/bcm2079x/gki/ulinux/
gki_ulinux.c     [all...]

Completed in 628 milliseconds

1 2