HomeSort by relevance Sort by last modified time
    Searched refs:off (Results 76 - 100 of 618) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/x509/
X509NameEntryConverter.java 56 * @param off the index at which the encoding starts
61 int off)
65 byte[] data = new byte[(str.length() - off) / 2];
68 char left = str.charAt((index * 2) + off);
69 char right = str.charAt((index * 2) + off + 1);
  /external/bouncycastle/src/main/java/org/bouncycastle/util/encoders/
Hex.java 29 int off,
36 encoder.encode(data, off, length, bOut);
66 int off,
71 return encoder.encode(data, off, length, out);
HexEncoder.java 47 int off,
52 for (int i = off; i < (off + length); i++)
77 int off,
85 int end = off + length;
87 while (end > off)
97 int i = off;
  /external/guava/src/com/google/common/io/
LineBuffer.java 45 * @param off the offset into the buffer
51 protected void add(char[] cbuf, int off, int len) throws IOException {
52 int pos = off;
61 for (int end = off + len; pos < end; pos++) {
81 line.append(cbuf, start, off + len - start);
  /external/iproute2/include/linux/tc_ematch/
tc_em_cmp.h 11 __u16 off; member in struct:tcf_em_cmp
  /external/openssl/crypto/dsa/
dsa_prn.c 65 int DSA_print_fp(FILE *fp, const DSA *x, int off)
76 ret=DSA_print(b,x,off);
98 int DSA_print(BIO *bp, const DSA *x, int off)
105 ret = EVP_PKEY_print_private(bp, pk, off, NULL);
  /frameworks/base/media/libstagefright/codecs/aacdec/
unpack_idx.cpp 114 HuffCodebook->off = {0, 1, 4};
171 *(pQuantSpec) = *(pQuantSpec) - off;
177 *(pQuantSpec) = *(pQuantSpec) - off;
184 *(pQuantSpec) = *(pQuantSpec) - off;
188 *(pQuantSpec) = codeword_indx - off;
341 const Int off = pHuffCodebook->off; local
354 temp_spec -= off;
369 temp_spec -= off;
389 temp_spec -= off;
432 const Int off = pHuffCodebook->off; local
561 const Int off = pHuffCodebook->off; local
    [all...]
  /libcore/luni/src/main/java/java/nio/
CharArrayBuffer.java 69 public final CharBuffer get(char[] dst, int off, int len) {
71 if ((off < 0) || (len < 0) || (long) off + (long) len > length) {
77 System.arraycopy(backingArray, offset + position, dst, off, len);
ReadWriteDirectByteBuffer.java 123 public ByteBuffer put(byte[] src, int off, int len) {
125 if (off < 0 || len < 0 || (long) off + (long) len > length) {
131 getBaseAddress().setByteArray(offset + position, src, off, len);
144 * @param off
149 * than zero and no greater than <code>src.length - off</code>
155 * If either <code>off</code> or <code>len</code> is
160 ByteBuffer put(short[] src, int off, int len) {
162 if (off < 0 || len < 0 || (long)off + (long)len > length)
    [all...]
CharSequenceAdapter.java 79 public final CharBuffer get(char[] dst, int off, int len) {
81 if ((off < 0) || (len < 0) || (long) off + (long) len > length) {
88 sequence.toString().getChars(position, newPosition, dst, off);
134 public final CharBuffer put(char[] src, int off, int len) {
135 if ((off < 0) || (len < 0) || (long) off + (long) len > src.length) {
DoubleBuffer.java 267 * @param off
272 * not greater than {@code dst.length - off}.
275 * if either {@code off} or {@code len} is invalid.
279 public DoubleBuffer get(double[] dst, int off, int len) {
281 if (off < 0 || len < 0 || (long) off + (long) len > length) {
288 for (int i = off; i < off + len; i++) {
412 * @param off
417 * not greater than {@code src.length - off}
    [all...]
FloatBuffer.java 269 * @param off
274 * greater than {@code dst.length - off}.
277 * if either {@code off} or {@code len} is invalid.
281 public FloatBuffer get(float[] dst, int off, int len) {
283 if (off < 0 || len < 0 || (long) off + (long) len > length) {
290 for (int i = off; i < off + len; i++) {
412 * @param off
417 * no greater than {@code src.length - off}
    [all...]
IntBuffer.java 258 * @param off
263 * greater than {@code dst.length - off}.
266 * if either {@code off} or {@code len} is invalid.
270 public IntBuffer get(int[] dst, int off, int len) {
272 if (off < 0 || len < 0 || (long) len + (long) off > length) {
278 for (int i = off; i < off + len; i++) {
400 * @param off
405 * greater than {@code src.length - off}
    [all...]
LongBuffer.java 260 * @param off
265 * greater than {@code dst.length - off}.
268 * if either {@code off} or {@code len} is invalid.
272 public LongBuffer get(long[] dst, int off, int len) {
274 if (off < 0 || len < 0 || (long) len + (long) off > length) {
281 for (int i = off; i < off + len; i++) {
405 * @param off
410 * not greater than {@code src.length - off}
    [all...]
ShortBuffer.java 259 * @param off
264 * not greater than {@code dst.length - off}.
267 * if either {@code off} or {@code len} is invalid.
271 public ShortBuffer get(short[] dst, int off, int len) {
273 if (off < 0 || len < 0 || (long) off + (long) len > length) {
279 for (int i = off; i < off + len; i++) {
401 * @param off
406 * not greater than {@code src.length - off}
    [all...]
  /libcore/luni/src/main/java/java/util/zip/
InflaterOutputStream.java 133 * @param off the start offset in the byte array
138 * @throws IndexOutOfBoundsException if {@code off < 0 || len < 0 || off + len > b.length}
141 public void write(byte[] b, int off, int len) throws IOException, ZipException {
146 if (off < 0 || len < 0 || len > b.length - off) {
150 inf.setInput(b, off, len);
InflaterInputStream.java 139 * {@code buffer} starting at {@code off}.
143 * @param off
152 public int read(byte[] buffer, int off, int nbytes) throws IOException {
158 if (off < 0 || nbytes < 0 || off + nbytes > buffer.length) {
171 if (off > buffer.length || nbytes < 0 || off < 0
172 || buffer.length - off < nbytes) {
183 int result = inf.inflate(buffer, off, nbytes);
  /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/Email/src/org/apache/commons/io/output/
NullOutputStream.java 41 * @param off The start offset
44 public void write(byte[] b, int off, int len) {
  /external/apache-http/src/org/apache/http/impl/io/
ChunkedOutputStream.java 108 * @param off
112 protected void flushCacheWithAppend(byte bufferToAppend[], int off, int len) throws IOException {
115 this.out.write(bufferToAppend, off, len);
159 public void write(byte src[], int off, int len) throws IOException {
164 flushCacheWithAppend(src, off, len);
166 System.arraycopy(src, off, cache, this.cachePosition, len);
  /external/bluetooth/bluez/src/
textfile.c 166 char *map, *off, *end, *str; local
202 off = find_key(map, size, key, len, icase);
203 if (!off) {
212 base = off - map;
214 end = strpbrk(off, "\r\n");
220 if (value && ((ssize_t) strlen(value) == end - off - len - 1) &&
221 !strncmp(off + len + 1, value, end - off - len - 1))
289 char *map, *off, *end, *str = NULL; local
316 off = find_key(map, size, key, len, icase)
384 char *map, *off, *end, *key, *value; local
    [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...]
  /system/extras/libpagemap/
pm_kernel.c 117 off_t off; local
122 off = lseek(ker->kpagecount_fd, pfn * sizeof(uint64_t), SEEK_SET);
123 if (off == (off_t)-1)
133 off_t off; local
138 off = lseek(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 74 int off = 1; local
78 mAlteredCharSequence.getChars(start, end, dest, off);
81 for (int i = off; i < end - start + off; i++) {
88 mAlteredCharSequence.getChars(start, end, dest, off);
89 for (int i = off; i < end - start + off; i++) {
94 mAlteredCharSequence.getChars(start, end, dest, off);
  /device/samsung/crespo/alsa-lib/src/conf/cards/
ATIIXP-MODEM.conf 21 hint.show off

Completed in 523 milliseconds

1 2 34 5 6 7 8 91011>>