HomeSort by relevance Sort by last modified time
    Searched refs:off (Results 201 - 225 of 1982) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/third_party/openssl/openssl/crypto/asn1/
a_d2i_fp.c 150 size_t off=0; local
163 if (want >= (len-off))
165 want-=(len-off);
173 if ((i < 0) && ((len-off) == 0))
190 p=(unsigned char *)&(b->data[off]);
193 len-off);
205 off+=i; /* end of data */
231 if (want > (len-off))
233 want-=(len-off);
260 if (off + c.slen < off
    [all...]
  /external/openssl/crypto/asn1/
a_d2i_fp.c 150 size_t off=0; local
163 if (want >= (len-off))
165 want-=(len-off);
173 if ((i < 0) && ((len-off) == 0))
190 p=(unsigned char *)&(b->data[off]);
193 len-off);
205 off+=i; /* end of data */
231 if (want > (len-off))
233 want-=(len-off);
260 if (off + c.slen < off
    [all...]
  /external/iproute2/tc/
m_pedit.c 129 if (tkey->off % 4) {
136 sel->keys[hwm].off = tkey->off;
148 if (tkey->off > (tkey->off & ~3)) {
157 tkey->off &= ~3;
167 if (0 > tkey->off) {
168 ind = tkey->off + 1;
172 ind = tkey->off;
180 ind = tkey->off & 3
340 int off; local
    [all...]
  /frameworks/base/core/jni/android/graphics/
MinikinUtils.cpp 30 static int snprintfcat(char* buf, int off, int size, const char* format, ...)
32 static int snprintfcat(char* buf, int off, int size, const char* format, ...) {
35 int n = vsnprintf(buf + off, size - off, format, args);
36 LOG_ALWAYS_FATAL_IF(n >= size - off, "String overflow in setting layout properties");
38 return off + n;
  /system/extras/libpagemap/
pm_kernel.c 117 off64_t off; local
122 off = lseek64(ker->kpagecount_fd, pfn * sizeof(uint64_t), SEEK_SET);
123 if (off == (off_t)-1)
133 off64_t off; local
138 off = lseek64(ker->kpageflags_fd, pfn * sizeof(uint64_t), SEEK_SET);
139 if (off == (off_t)-1)
  /cts/tests/tests/text/src/android/text/cts/
AlteredCharSequenceTest.java 60 int off = 1; local
64 mAlteredCharSequence.getChars(start, end, dest, off);
67 for (int i = off; i < end - start + off; i++) {
74 mAlteredCharSequence.getChars(start, end, dest, off);
75 for (int i = off; i < end - start + off; i++) {
80 mAlteredCharSequence.getChars(start, end, dest, off);
  /external/apache-http/src/org/apache/http/impl/io/
IdentityOutputStream.java 82 public void write(byte[] b, int off, int len) throws IOException {
86 this.out.write(b, off, len);
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/
font_output_stream.h 55 virtual void Write(ByteVector* b, int32_t off, int32_t len);
56 virtual void Write(byte_t* b, int32_t off, int32_t len);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/scripts/
genresults.bat 1 @echo off
  /external/f2fs-tools/scripts/
dumpf2fs.sh 56 let off=$addr-$BASE_MAIN
57 let off=$off%0x200000/0x1000
58 echo $segno, $off
  /external/guava/guava-tests/test/com/google/common/io/
LineBufferTest.java 91 int off = 0; local
92 while (off < chars.length) {
93 int len = Math.min(chars.length, off + chunk) - off;
94 lineBuf.add(chars, off, len);
95 off += len;
140 @Override public int read(char[] cbuf, int off, int len)
142 return super.read(cbuf, off, Math.min(chunk, len));
  /external/libcxx/test/input.output/iostream.format/output.streams/ostream.seeks/
tellp.pass.cpp 32 seekoff(typename base::off_type off, std::ios_base::seekdir way, std::ios_base::openmode which)
34 assert(off == 0);
  /external/libvorbis/lib/
misc.h 28 ogg_int64_t off);
30 ogg_int64_t off);
  /external/ltrace/sysdeps/linux-gnu/arm/
plt.c 214 arch_plt_entry_has_stub(struct ltelf *lte, size_t off) {
216 uint16_t op = *(uint16_t *) (buf + off);
223 size_t off = start + 20, i; local
225 off += arch_plt_entry_has_stub(lte, off) ? 16 : 12;
226 if (arch_plt_entry_has_stub(lte, off))
227 off += 4;
228 return lte->plt_addr + off - start;
  /external/qemu/slirp/
ip_output.c 51 * header (with len, off, ttl, proto, tos, src, dst).
61 int len, off, error = 0; local
133 for (off = hlen + len; off < (u_int16_t)ip->ip_len; off += len) {
152 mhip->ip_off = ((off - hlen) >> 3) + (ip->ip_off & ~IP_MF);
155 if (off + len >= (u_int16_t)ip->ip_len)
156 len = (u_int16_t)ip->ip_len - off;
161 if (m_copy(m, m0, off, len) < 0) {
sbuf.c 169 sbcopy(struct sbuf *sb, int off, int len, char *to)
173 from = sb->sb_rptr + off;
181 /* re-use off */
182 off = (sb->sb_data + sb->sb_datalen) - from;
183 if (off > len) off = len;
184 memcpy(to,from,off);
185 len -= off;
187 memcpy(to+off,sb->sb_data,len);
  /external/qemu/slirp-android/
ip_output.c 51 * header (with len, off, ttl, proto, tos, src, dst).
61 int len, off, error = 0; local
133 for (off = hlen + len; off < (u_int16_t)ip->ip_len; off += len) {
152 mhip->ip_off = ((off - hlen) >> 3) + (ip->ip_off & ~IP_MF);
155 if (off + len >= (u_int16_t)ip->ip_len)
156 len = (u_int16_t)ip->ip_len - off;
161 if (m_copy(m, m0, off, len) < 0) {
sbuf.c 169 sbcopy(struct sbuf *sb, int off, int len, char *to)
173 from = sb->sb_rptr + off;
181 /* re-use off */
182 off = (sb->sb_data + sb->sb_datalen) - from;
183 if (off > len) off = len;
184 memcpy(to,from,off);
185 len -= off;
187 memcpy(to+off,sb->sb_data,len);
  /external/sfntly/cpp/src/sfntly/data/
font_output_stream.h 55 virtual void Write(ByteVector* b, int32_t off, int32_t len);
56 virtual void Write(byte_t* b, int32_t off, int32_t len);
  /external/smali/util/src/main/java/org/jf/util/
RandomAccessFileOutputStream.java 60 @Override public void write(byte[] b, int off, int len) throws IOException {
63 raf.write(b, off, len);
  /frameworks/base/rs/java/android/renderscript/
AllocationAdapter.java 49 public void subData1D(int off, int count, int[] d) {
50 super.copy1DRangeFrom(off, count, d);
55 public void subData1D(int off, int count, short[] d) {
56 super.copy1DRangeFrom(off, count, d);
61 public void subData1D(int off, int count, byte[] d) {
62 super.copy1DRangeFrom(off, count, d);
67 public void subData1D(int off, int count, float[] d) {
68 super.copy1DRangeFrom(off, count, d);
  /libcore/luni/src/main/java/libcore/net/url/
FtpURLInputStream.java 46 public int read(byte[] buf, int off, int nbytes) throws IOException {
47 return is.read(buf, off, nbytes);
  /libcore/luni/src/main/native/
java_util_zip_Adler32.cpp 26 static jlong Adler32_updateImpl(JNIEnv* env, jobject, jbyteArray byteArray, int off, int len, jlong crc) {
31 return adler32(crc, reinterpret_cast<const Bytef*>(bytes.get() + off), len);
java_util_zip_CRC32.cpp 26 static jlong CRC32_updateImpl(JNIEnv* env, jobject, jbyteArray byteArray, int off, int len, jlong crc) {
31 jlong result = crc32(crc, reinterpret_cast<const Bytef*>(bytes.get() + off), len);
  /ndk/sources/android/support/src/wcstox/
shgetc.c 31 int off = f->rpos - f->rstart; local
32 if (off > lim)

Completed in 1882 milliseconds

1 2 3 4 5 6 7 891011>>