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

1 2 3 4

  /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...]
  /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...]
  /external/chromium_org/third_party/icu/source/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/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...]
  /art/compiler/dex/quick/mips/
target_mips.cc 159 char tbuf[256]; local
168 strcpy(tbuf, "!");
175 strcpy(tbuf, "0000");
177 tbuf[i] += operand & 1;
182 sprintf(tbuf, "$f%d", operand & MIPS_FP_REG_MASK);
186 sprintf(tbuf, "$f%d", operand & MIPS_FP_REG_MASK);
189 sprintf(tbuf, "%04x", operand);
193 sprintf(tbuf, "%d", operand);
196 sprintf(tbuf, "%d", operand+1);
199 sprintf(tbuf, "%d", operand*4)
    [all...]
  /external/chromium_org/third_party/openssl/openssl/crypto/rsa/
rsa_pmeth.c 93 unsigned char *tbuf; member in struct:__anon13719
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/openssl/crypto/rsa/
rsa_pmeth.c 93 unsigned char *tbuf; member in struct:__anon24291
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/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...]
  /art/compiler/dex/quick/arm/
target_arm.cc 309 char tbuf[256]; local
319 strcpy(tbuf, "!");
327 sprintf(tbuf, ", %s %d", shift_names[operand & 0x3], operand >> 2);
329 strcpy(tbuf, "");
356 strcpy(tbuf, name);
359 strcpy(tbuf, "0000");
361 tbuf[i] += operand & 1;
367 sprintf(tbuf, "%d [%#x]", operand, operand);
371 sprintf(tbuf, "%d [%#x]", operand, operand);
374 sprintf(tbuf, "s%d", operand & ARM_FP_REG_MASK)
    [all...]
  /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/ipsec-tools/src/racoon/
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;
logger.h 41 time_t *tbuf; member in struct:log
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/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/qemu/distrib/sdl-1.2.15/src/main/symbian/EKA2/
vectorbuffer.cpp 14 TBuf<64> b;
  /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/chromium_org/third_party/libusb/src/libusb/
descriptor.c 1151 unsigned char tbuf[255]; \/* Some devices choke on size > 255 *\/ local
    [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/60xx/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);
  /hardware/invensense/65xx/libsensors_iio/
CompassSensor.IIO.9150.cpp 337 char iio_trigger_path[MAX_SYSFS_NAME_LEN], tbuf[2]; local
368 tbuf[0] = num + 0x30;
369 tbuf[1] = 0;
370 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/qemu/distrib/sdl-1.2.15/src/thread/symbian/
SDL_systhread.cpp 72 TBuf<16> name;

Completed in 274 milliseconds

1 2 3 4