HomeSort by relevance Sort by last modified time
    Searched refs:off (Results 251 - 275 of 2864) sorted by null

<<11121314151617181920>>

  /external/iproute2/include/linux/tc_ematch/
tc_em_cmp.h 10 __u16 off; member in struct:tcf_em_cmp
  /external/jetty/src/java/org/eclipse/jetty/util/
ReadLineInputStream.java 113 public synchronized int read(byte[] buf, int off, int len) throws IOException
126 buf[off]=(byte)(0xff&b);
127 return 1+super.read(buf,off+1,len-1);
132 return super.read(buf,off,len);
  /external/kernel-headers/original/uapi/linux/tc_ematch/
tc_em_cmp.h 10 __u16 off; member in struct:tcf_em_cmp
  /external/libunwind/src/coredump/
_UPT_get_dyn_info_list_addr.c 37 unsigned long lo, hi, off; local
46 while (maps_next (&mi, &lo, &hi, &off))
48 if (off)
59 di = tdep_find_unwind_table (&ui->edi, as, path, lo, off);
  /external/libunwind/src/ptrace/
_UPT_get_dyn_info_list_addr.c 36 unsigned long lo, hi, off; local
44 while (maps_next (&mi, &lo, &hi, &off))
46 if (off)
53 if (tdep_find_unwind_table (&ui->edi, as, path, lo, off, 0) > 0)
  /external/libunwind/tests/
test-init-remote.c 51 unw_word_t ip, sp, off; local
65 if (unw_get_proc_name (&cursor, name, sizeof (name), &off) == 0)
67 if (off)
68 snprintf (buf, sizeof (buf), "<%s+0x%lx>", name, (long) off);
  /external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/src/
dxbc_assemble.cpp 49 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;
  /hardware/bsp/intel/peripheral/libupm/examples/c++/
groveled-multi.cxx 50 // own until turned off.
62 led->off();
groveled.cxx 41 // Turn the LED on and off 10 times, pausing one second
46 led->off();
  /hardware/bsp/intel/peripheral/libupm/examples/java/
GroveLEDSample.java 42 led.off();
  /hardware/bsp/intel/peripheral/libupm/examples/javascript/
grove_mcfled.js 33 // This way, the LED turns off when you quit the program
39 // When exiting: turn off LED, clear interval, and print message
43 myled.off();
groveled.js 34 // Turn the LED on and off 10 times, pausing one second
41 led.off();
  /hardware/bsp/intel/peripheral/libupm/examples/python/
groveled.py 32 # Turn the LED on and off 10 times, pausing one second
37 led.off()
groverelay.py 38 relay.off()
40 print relay.name(), 'is off'
  /hardware/bsp/intel/peripheral/libupm/src/cjq4435/
cjq4435.h 101 * between 0.0 (always off) and 1.0 (always on). It represents a
115 * Shortcut to turn the output to continuous off (low)
117 void off();
  /libcore/ojluni/src/main/java/java/io/
ByteArrayInputStream.java 157 * are copied into <code>b[off]</code> through
158 * <code>b[off+k-1]</code> in the manner performed
166 * @param off the start offset in the destination array <code>b</code>
172 * @exception IndexOutOfBoundsException If <code>off</code> is negative,
174 * <code>b.length - off</code>
176 public synchronized int read(byte b[], int off, int len) {
179 } else if (off < 0 || len < 0 || len > b.length - off) {
194 System.arraycopy(buf, pos, b, off, len);
ObjectInput.java 76 * @param off the start offset of the data
82 public int read(byte b[], int off, int len) throws IOException;
ObjectOutput.java 70 * @param off the start offset in the data
74 public void write(byte b[], int off, int len) throws IOException;
OutputStreamWriter.java 201 * @param off Offset from which to start writing characters
206 public void write(char cbuf[], int off, int len) throws IOException {
207 se.write(cbuf, off, len);
214 * @param off Offset from which to start writing characters
219 public void write(String str, int off, int len) throws IOException {
220 se.write(str, off, len);
Writer.java 136 * @param off
145 abstract public void write(char cbuf[], int off, int len) throws IOException;
166 * @param off
173 * If <tt>off</tt> is negative, or <tt>len</tt> is negative,
174 * or <tt>off+len</tt> is negative or greater than the length
180 public void write(String str, int off, int len) throws IOException {
191 str.getChars(off, (off + len), cbuf, 0);
  /libcore/ojluni/src/main/java/sun/security/ssl/
AppInputStream.java 77 * Read up to "len" bytes into this buffer, starting at "off".
82 public synchronized int read(byte b[], int off, int len)
86 } else if (off < 0 || len < 0 || len > b.length - off) {
109 howmany = r.read(b, off, howmany);
ByteBufferInputStream.java 84 public int read(byte b[], int off, int len) throws IOException {
92 } else if (off < 0 || len < 0 || len > b.length - off) {
103 bb.get(b, off, length);
  /libcore/ojluni/src/main/native/
Adler32.c 51 jarray b, jint off, jint len)
55 adler = adler32(adler, buf + off, len);
63 jlong address, jint off, jint len)
67 adler = adler32(adler, buf + off, len);
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
MySignature1.java 80 protected void engineUpdate(byte[] b, int off, int len)
83 if (off < 0 || off > b.length || off > len) {
84 throw new IllegalArgumentException("incorrect parameter off");
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
NullOutputStream.java 41 * @param off The start offset
44 public void write(byte[] b, int off, int len) {

Completed in 679 milliseconds

<<11121314151617181920>>