HomeSort by relevance Sort by last modified time
    Searched refs:off (Results 226 - 250 of 2045) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/encoders/
Base64.java 24 int off,
27 byte[] encoded = encode(data, off, length);
49 int off,
57 encoder.encode(data, off, length, bOut);
87 int off,
92 return encoder.encode(data, off, length, out);
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/util/encoders/
Base64.java 26 int off,
29 byte[] encoded = encode(data, off, length);
51 int off,
59 encoder.encode(data, off, length, bOut);
89 int off,
94 return encoder.encode(data, off, length, out);
  /external/guava/guava/src/com/google/common/base/
Utf8.java 121 * @param off the offset in the buffer of the first byte to read
124 public static boolean isWellFormed(byte[] bytes, int off, int len) {
125 int end = off + len;
126 checkPositionIndexes(off, end, bytes.length);
128 for (int i = off; i < end; i++) {
136 private static boolean isWellFormedSlowPath(byte[] bytes, int off, int end) {
137 int index = off;
  /external/llvm/lib/CodeGen/SelectionDAG/
SDNodeDbgValue.h 58 uint64_t off, DebugLoc dl, unsigned O)
59 : Var(Var), Expr(Expr), Offset(off), DL(std::move(dl)), Order(O),
67 SDDbgValue(MDNode *Var, MDNode *Expr, const Value *C, uint64_t off,
69 : Var(Var), Expr(Expr), Offset(off), DL(std::move(dl)), Order(O),
76 SDDbgValue(MDNode *Var, MDNode *Expr, unsigned FI, uint64_t off, DebugLoc dl,
78 : Var(Var), Expr(Expr), Offset(off), DL(std::move(dl)), Order(O),
  /external/xz-java/src/org/tukaani/xz/
SimpleOutputStream.java 48 public void write(byte[] buf, int off, int len) throws IOException {
49 if (off < 0 || len < 0 || off + len < 0 || off + len > buf.length)
61 System.arraycopy(buf, off, filterBuf, pos + unfiltered, copySize);
62 off += copySize;
XZInputStream.java 357 * @param off start offset in <code>buf</code>
374 public int read(byte[] buf, int off, int len) throws IOException {
375 if (off < 0 || len < 0 || off + len < 0 || off + len > buf.length)
400 int ret = xzIn.read(buf, off, len);
404 off += ret;
  /external/xz-java/src/org/tukaani/xz/common/
DecoderUtil.java 22 public static boolean isCRC32Valid(byte[] buf, int off, int len,
25 crc32.update(buf, off, len);
81 private static StreamFlags decodeStreamFlags(byte[] buf, int off)
83 if (buf[off] != 0x00 || (buf[off + 1] & 0xFF) >= 0x10)
87 streamFlags.checkType = buf[off + 1];
  /external/u-boot/cmd/
bootm.c 379 loff_t off, size_t len)
387 nand_dev, off);
392 ret = nand_read_skip_bad(mtd, off, &len, NULL, mtd->size, imgdata);
404 nand_dev, off);
418 static int nand_imls_fitimage(struct mtd_info *mtd, int nand_dev, loff_t off,
427 nand_dev, off);
432 ret = nand_read_skip_bad(mtd, off, &len, NULL, mtd->size, imgdata);
443 printf("FIT Image at NAND device %d offset %08llX:\n", nand_dev, off);
456 loff_t off; local
471 for (off = 0; off < mtd->size; off += mtd->erasesize)
    [all...]
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/deflate64/
HuffmanDecoder.java 132 public int decode(byte[] b, int off, int len) throws IOException {
152 return state.read(b, off, len);
195 abstract int read(byte[] b, int off, int len) throws IOException;
216 int read(byte[] b, int off, int len) throws IOException {
224 b[off + readSoFar] = memory.add(next);
227 readNow = in.read(b, off + readSoFar, max - readSoFar);
231 memory.add(b, off + readSoFar, readNow);
257 int read(byte[] b, int off, int len) throws IOException {
294 int read(byte[] b, int off, int len) throws IOException {
295 return decodeNext(b, off, len)
383 int off = 0; local
    [all...]
  /external/linux-kselftest/tools/testing/selftests/bpf/
test_l4lb.c 236 static __always_inline int parse_icmpv6(void *data, void *data_end, __u64 off,
242 icmp_hdr = data + off;
247 off += sizeof(struct icmp6hdr);
248 ip6h = data + off;
258 static __always_inline int parse_icmp(void *data, void *data_end, __u64 off,
264 icmp_hdr = data + off;
270 off += sizeof(struct icmphdr);
271 iph = data + off;
283 static __always_inline bool parse_udp(void *data, __u64 off, void *data_end,
287 udp = data + off;
    [all...]
test_l4lb_noinline.c 236 static int parse_icmpv6(void *data, void *data_end, __u64 off,
242 icmp_hdr = data + off;
247 off += sizeof(struct icmp6hdr);
248 ip6h = data + off;
258 static int parse_icmp(void *data, void *data_end, __u64 off,
264 icmp_hdr = data + off;
270 off += sizeof(struct icmphdr);
271 iph = data + off;
283 static bool parse_udp(void *data, __u64 off, void *data_end,
287 udp = data + off;
    [all...]
  /build/make/tools/signapk/src/com/android/signapk/
CountingOutputStream.java 45 public void write(byte[] b, int off, int len) throws IOException {
46 mBase.write(b, off, len);
  /cts/tests/tests/text/src/android/text/cts/
AlteredCharSequenceTest.java 70 int off = 1; local
74 mAlteredCharSequence.getChars(start, end, dest, off);
77 for (int i = off; i < end - start + off; i++) {
84 mAlteredCharSequence.getChars(start, end, dest, off);
85 for (int i = off; i < end - start + off; i++) {
90 mAlteredCharSequence.getChars(start, end, dest, off);
  /device/linaro/bootloader/arm-trusted-firmware/plat/nvidia/tegra/common/drivers/smmu/
smmu.c 22 static uint32_t tegra_smmu_read_32(uint32_t smmu_id, uint32_t off)
26 return mmio_read_32(TEGRA_SMMU0_BASE + off);
31 return mmio_read_32(TEGRA_SMMU1_BASE + off);
36 return mmio_read_32(TEGRA_SMMU2_BASE + off);
43 uint32_t off, uint32_t val)
47 mmio_write_32(TEGRA_SMMU0_BASE + off, val);
52 mmio_write_32(TEGRA_SMMU1_BASE + off, val);
57 mmio_write_32(TEGRA_SMMU2_BASE + off, val);
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/lzma/
LZMACompressorOutputStream.java 54 public void write(final byte[] buf, final int off, final int len) throws IOException {
55 out.write(buf, off, len);
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/xz/
XZCompressorOutputStream.java 73 public void write(final byte[] buf, final int off, final int len) throws IOException {
74 out.write(buf, off, len);
  /external/apache-commons-compress/src/main/java/org/apache/commons/compress/utils/
CountingInputStream.java 50 public int read(final byte[] b, final int off, final int len) throws IOException {
51 final int r = in.read(b, off, len);
CountingOutputStream.java 47 public void write(final byte[] b, final int off, final int len) throws IOException {
48 out.write(b, off, len);
  /external/apache-commons-compress/src/test/resources/COMPRESS-320/
recreate.sh 8 7za a -m0=$COMPRESSION -ms=off $COMPRESSION.7z ../../../../src/main/java/org/apache/commons/compress/compressors
  /external/apache-http/src/org/apache/http/impl/io/
IdentityOutputStream.java 87 public void write(byte[] b, int off, int len) throws IOException {
91 this.out.write(b, off, len);
  /external/archive-patcher/applier/src/main/java/com/google/archivepatcher/applier/
LimitedInputStream.java 62 public int read(byte[] b, int off, int len) throws IOException {
67 int numRead = in.read(b, off, maxRead);
  /external/archive-patcher/shared/src/main/java/com/google/archivepatcher/shared/
RandomAccessFileOutputStream.java 72 public void write(byte[] b, int off, int len) throws IOException {
73 raf.write(b, off, len);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/io/
SignatureUpdatingOutputStream.java 18 public void write(byte[] bytes, int off, int len)
23 sig.update(bytes, off, len);
  /external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/jcajce/io/
SignatureUpdatingOutputStream.java 19 public void write(byte[] bytes, int off, int len)
24 sig.update(bytes, off, len);
  /external/cldr/tools/java/com/ibm/icu/dev/test/
TestLogWriter.java 23 public void write(char cbuf[], int off, int len) throws IOException {
24 write(new String(cbuf, off, len));

Completed in 2408 milliseconds

1 2 3 4 5 6 7 8 91011>>