HomeSort by relevance Sort by last modified time
    Searched refs:lbuf (Results 1 - 10 of 10) sorted by null

  /external/valgrind/none/tests/
process_vm_readv_writev.c 17 char lbuf[] = "123456"; local
23 lvec[0].iov_base = lbuf + 1;
25 lvec[1].iov_base = lbuf + 3;
41 if (strcmp(lbuf, "1B3CE6") != 0) {
42 fprintf(stderr, "Expected: \"1B3CE6\"; Got: \"%s\"\n", lbuf);
53 char lbuf[] = "123456"; local
59 lvec[0].iov_base = lbuf + 1;
61 lvec[1].iov_base = lbuf + 3;
  /libcore/ojluni/src/main/java/java/util/jar/
Manifest.java 197 byte[] lbuf = new byte[512];
199 attr.read(fis, lbuf);
210 while ((len = fis.readLine(lbuf)) != -1) {
211 if (lbuf[--len] != '\n') {
214 if (len > 0 && lbuf[len-1] == '\r') {
223 name = parseName(lbuf, len);
230 System.arraycopy(lbuf, 6, lastline, 0, len - 6);
237 System.arraycopy(lbuf, 1, buf, lastline.length, len - 1);
251 attr.read(fis, lbuf);
264 private String parseName(byte[] lbuf, int len)
    [all...]
Attributes.java 372 void read(Manifest.FastInputStream is, byte[] lbuf) throws IOException {
377 while ((len = is.readLine(lbuf)) != -1) {
379 if (lbuf[--len] != '\n') {
382 if (len > 0 && lbuf[len-1] == '\r') {
389 if (lbuf[0] == ' ') {
397 System.arraycopy(lbuf, 1, buf, lastline.length, len - 1);
405 while (lbuf[i++] != ':') {
410 if (lbuf[i++] != ' ') {
413 name = new String(lbuf, 0, 0, i - 2);
416 System.arraycopy(lbuf, i, lastline, 0, len - i)
    [all...]
  /hardware/bsp/intel/peripheral/libupm/src/adis16448/
adis16448.cxx 172 uint8_t lbuf[2]; //Allocate write buffer local
173 memset(lbuf, 0, sizeof(uint8_t)*2); //Fill low buffer with 0's
174 lbuf[0] = (lowWord >> 8);
175 lbuf[1] = (lowWord);
176 mraa_spi_write_buf(_spi, lbuf, 2); //Write the buffer to the SPI port
  /ndk/sources/host-tools/make-3.81/
remake.c     [all...]
  /external/toybox/toys/pending/
ip.c 953 lbuf[INET6_ADDRSTRLEN] = {0,}, lbuf_ifa[INET6_ADDRSTRLEN] = {0,}; local
990 if (!if_indextoname(ifa->ifa_index, lbuf)) perror_exit(NULL);
991 printf("%u: %s",ifa->ifa_index, lbuf);
1002 lbuf, sizeof(lbuf))) perror_exit("inet");
1004 sprintf(family+strlen(family), lbuf, strlen(lbuf));
1015 if (addrinfo.to && strcmp(addrinfo.addr, lbuf))
1020 lbuf, sizeof(lbuf))) perror_exit("inet")
1350 char lbuf[INET6_ADDRSTRLEN]; local
    [all...]
  /external/opencv3/modules/core/test/
test_arithm.cpp 610 union { double d[4]; float f[4]; int i[4];} lbuf, rbuf;
612 scalarToRawData(lb, lbuf.d, wtype, cn);
623 inRangeS_((const uchar*)sptr, lbuf.i, rbuf.i, dptr, total, cn);
626 inRangeS_((const schar*)sptr, lbuf.i, rbuf.i, dptr, total, cn);
629 inRangeS_((const ushort*)sptr, lbuf.i, rbuf.i, dptr, total, cn);
632 inRangeS_((const short*)sptr, lbuf.i, rbuf.i, dptr, total, cn);
635 inRangeS_((const int*)sptr, lbuf.i, rbuf.i, dptr, total, cn);
638 inRangeS_((const float*)sptr, lbuf.f, rbuf.f, dptr, total, cn);
641 inRangeS_((const double*)sptr, lbuf.d, rbuf.d, dptr, total, cn);
    [all...]
  /toolchain/binutils/binutils-2.25/opcodes/
ia64-gen.c 2183 char lbuf[80], buf[80]; local
    [all...]
  /external/ipsec-tools/src/racoon/
isakmp.c 204 char lbuf[sizeof(struct udphdr) + member in union:__anon13450
250 udp = (struct udphdr *)&x.lbuf[0];
252 ip = (struct iphdr *)(x.lbuf + sizeof(*udp));
258 udp = (struct udphdr *)&x.lbuf[0];
260 ip = (struct ip *)(x.lbuf + sizeof(*udp));
    [all...]
  /external/opencv3/modules/core/src/
arithm.cpp 5728 uchar *buf = _buf, *mbuf = buf, *lbuf = 0, *ubuf = 0; local
    [all...]

Completed in 211 milliseconds