Searched defs:off (Results 1 - 25 of 582) sorted by relevance

1234567891011>>

/external/elfutils/libdw/
H A Ddwarf_formstring.c68 uint64_t off; local
70 attrp->cu->offset_size, &off, IDX_debug_str, 1))
73 return (const char *) dbg_ret->sectiondata[IDX_debug_str]->d_buf + off;
H A Ddwarf_addrdie.c42 Dwarf_Off off; local
47 NULL, NULL, &off) != 0)
50 return INTUSE(dwarf_offdie) (dbg, off, result);
/external/dagger2/examples/simple/src/main/java/coffee/
H A DHeater.java5 void off(); method in interface:Heater
H A DElectricHeater.java11 @Override public void off() { method in class:ElectricHeater
/external/elfutils/libdwfl/
H A Ddwfl_module_addrname.c34 GElf_Off off; local
36 return INTUSE(dwfl_module_addrinfo) (mod, addr, &off, &sym,
/external/iproute2/include/linux/tc_ematch/
H A Dtc_em_nbyte.h8 __u16 off; member in struct:tcf_em_nbyte
/external/kernel-headers/original/uapi/linux/tc_ematch/
H A Dtc_em_nbyte.h8 __u16 off; member in struct:tcf_em_nbyte
/external/autotest/client/cros/
H A Dpower_strip.py20 def off(self, outlet, delay=0): member in class:PowerStrip
21 self.command('off', outlet, delay)
/external/boringssl/src/crypto/asn1/
H A Dt_pkey.c64 unsigned char *buf, int off)
71 if(!BIO_indent(bp,off,128))
103 || !BIO_indent(bp,off+4,128))
63 ASN1_bn_print(BIO *bp, const char *number, const BIGNUM *num, unsigned char *buf, int off) argument
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
H A DNullOutputStream.java18 public void write(byte[] buf, int off, int len) argument
/external/elfutils/libelf/
H A Delf_getphdrnum.c88 Elf64_Off off = (elf->class == ELFCLASS32 local
91 if (unlikely (off == 0))
97 if (unlikely (off >= elf->maximum_size))
113 if (unlikely (elf->maximum_size - off < *dst * phdr_size))
114 *dst = (elf->maximum_size - off) / phdr_size;
/external/elfutils/tests/
H A Dstrptr.c77 size_t off = 0; local
78 const char *str = elf_strptr (elf, ndx, off);
81 printf ("[%zx] '%s'\n", off, str);
82 off += strlen (str) + 1;
83 str = elf_strptr (elf, ndx, off);
/external/guava/guava/src/com/google/common/io/
H A DByteProcessor.java37 * from {@code buf[off]} through {@code buf[off + len - 1]}
41 * @param off the initial offset into the array
45 boolean processBytes(byte[] buf, int off, int len) throws IOException; argument
/external/libcxx/test/std/input.output/iostream.format/output.streams/ostream.seeks/
H A Dseekp2.pass.cpp15 // basic_ostream<charT,traits>& seekp(off_type off, ios_base::seekdir dir);
32 seekoff(typename base::off_type off, std::ios_base::seekdir way, argument
38 return off;
H A Dtellp.pass.cpp32 seekoff(typename base::off_type off, std::ios_base::seekdir way, std::ios_base::openmode which) argument
34 assert(off == 0);
/external/lzma/Java/Tukaani/src/org/tukaani/xz/check/
H A DNone.java18 public void update(byte[] buf, int off, int len) {} argument
/external/lzma/Java/Tukaani/src/org/tukaani/xz/delta/
H A DDeltaDecoder.java17 public void decode(byte[] buf, int off, int len) { argument
18 int end = off + len;
19 for (int i = off; i < end; ++i) {
/external/lzma/Java/Tukaani/src/org/tukaani/xz/simple/
H A DSimpleFilter.java13 int code(byte[] buf, int off, int len); argument
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/src/
H A Ddxbc_assemble.cpp49 uint32_t off = sizeof(struct dxbc_container_header) + num_chunks * sizeof(uint32_t); local
52 chunk_offsets[i] = bswap_le32(off);
54 memcpy((char*)header + off, chunks[i], chunk_full_size);
55 off += chunk_full_size;
/external/apache-http/src/org/apache/http/impl/io/
H A DContentLengthOutputStream.java109 public void write(byte[] b, int off, int len) throws IOException { argument
118 this.out.write(b, off, len);
H A DIdentityInputStream.java87 public int read(final byte[] b, int off, int len) throws IOException { argument
91 return this.in.read(b, off, len);
H A DIdentityOutputStream.java87 public void write(byte[] b, int off, int len) throws IOException { argument
91 this.out.write(b, off, len);
/external/apache-http/src/org/apache/http/io/
H A DSessionInputBuffer.java54 int read(byte[] b, int off, int len) throws IOException; argument
H A DSessionOutputBuffer.java54 void write(byte[] b, int off, int len) throws IOException; argument
/external/autotest/client/tests/tracing_microbenchmark/
H A Dtracers.py11 off = base_tracer.Tracer variable

Completed in 597 milliseconds

1234567891011>>