HomeSort by relevance Sort by last modified time
    Searched refs:off (Results 176 - 200 of 1168) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/iproute2/include/linux/tc_act/
tc_pedit.h 20 __u32 off; /*offset */ member in struct:tc_pedit_key
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/
SavableSerializer.java 68 public void write(byte[] b, int off, int len){
69 output.put(b, off, len);
95 public int read(byte[] b, int off, int len){
97 input.get(b, off, len);
  /frameworks/base/core/java/android/util/
Base64OutputStream.java 98 public void write(byte[] b, int off, int len) throws IOException {
101 internalWrite(b, off, len, false);
136 private void internalWrite(byte[] b, int off, int len, boolean finish) throws IOException {
138 if (!coder.process(b, off, len, finish)) {
  /libcore/luni/src/main/native/
ZipUtilities.h 52 void setDictionary(JNIEnv* env, jbyteArray javaDictionary, int off, int len, bool inflate) {
58 env->GetByteArrayRegion(javaDictionary, off, len, &dictionaryBytes[0]);
73 void setInput(JNIEnv* env, jbyteArray buf, jint off, jint len) {
82 env->GetByteArrayRegion(buf, off, len, &input[0]);
  /packages/apps/Camera/jni/feature_mos/src/mosaic/
Pyramid.cpp 115 int off, off2, height, h, w; local
119 off = pyr->border - left;
120 off2 = pyr->width + off + pyr->border - right - 1;
123 base = pyr->ptr[-h] - off;
152 int off = in->border / 2; local
155 for (j = -off; j < in->height + off; j++) {
172 for (i = -off; i < scr->width + off; i++) {
217 int off = scr->border - 2 local
    [all...]
  /packages/apps/Gallery2/jni_mosaic/feature_mos/src/mosaic/
Pyramid.cpp 115 int off, off2, height, h, w; local
119 off = pyr->border - left;
120 off2 = pyr->width + off + pyr->border - right - 1;
123 base = pyr->ptr[-h] - off;
152 int off = in->border / 2; local
155 for (j = -off; j < in->height + off; j++) {
172 for (i = -off; i < scr->width + off; i++) {
217 int off = scr->border - 2 local
    [all...]
  /packages/apps/LegacyCamera/jni/feature_mos/src/mosaic/
Pyramid.cpp 115 int off, off2, height, h, w; local
119 off = pyr->border - left;
120 off2 = pyr->width + off + pyr->border - right - 1;
123 base = pyr->ptr[-h] - off;
152 int off = in->border / 2; local
155 for (j = -off; j < in->height + off; j++) {
167 for (i = -off; i < scr->width + off; i++) {
211 int off = scr->border - 2 local
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/tc_act/
tc_pedit.h 21 __u32 off; /*offset */ member in struct:tc_pedit_key
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/tc_act/
tc_pedit.h 21 __u32 off; /*offset */ member in struct:tc_pedit_key
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/tc_act/
tc_pedit.h 21 __u32 off; /*offset */ member in struct:tc_pedit_key
  /external/apache-http/src/org/apache/http/impl/conn/
LoggingSessionOutputBuffer.java 65 public void write(byte[] b, int off, int len) throws IOException {
66 this.out.write(b, off, len);
68 this.wire.output(b, off, len);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
BEROctetStringGenerator.java 67 public void write(byte[] b, int off, int len) throws IOException
72 System.arraycopy(b, off, _buf, _off, numToCopy);
83 off += numToCopy;
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/packets/
PacketChannelOpenConfirmation.java 33 public PacketChannelOpenConfirmation(byte payload[], int off, int len) throws IOException
36 System.arraycopy(payload, off, this.payload, 0, len);
38 TypesReader tr = new TypesReader(payload, off, len);
PacketChannelOpenFailure.java 33 public PacketChannelOpenFailure(byte payload[], int off, int len) throws IOException
36 System.arraycopy(payload, off, this.payload, 0, len);
38 TypesReader tr = new TypesReader(payload, off, len);
PacketDisconnect.java 22 public PacketDisconnect(byte payload[], int off, int len) throws IOException
25 System.arraycopy(payload, off, this.payload, 0, len);
27 TypesReader tr = new TypesReader(payload, off, len);
PacketUserauthInfoRequest.java 27 public PacketUserauthInfoRequest(byte payload[], int off, int len) throws IOException
30 System.arraycopy(payload, off, this.payload, 0, len);
32 TypesReader tr = new TypesReader(payload, off, len);
PacketUserauthRequestNone.java 28 public PacketUserauthRequestNone(byte payload[], int off, int len) throws IOException
31 System.arraycopy(payload, off, this.payload, 0, len);
33 TypesReader tr = new TypesReader(payload, off, len);
PacketUserauthRequestPassword.java 30 public PacketUserauthRequestPassword(byte payload[], int off, int len) throws IOException
33 System.arraycopy(payload, off, this.payload, 0, len);
35 TypesReader tr = new TypesReader(payload, off, len);
PacketUserauthRequestPublicKey.java 36 public PacketUserauthRequestPublicKey(byte payload[], int off, int len) throws IOException
39 System.arraycopy(payload, off, this.payload, 0, len);
41 TypesReader tr = new TypesReader(payload, off, len);
  /external/guava/guava/src/com/google/common/io/
MultiInputStream.java 90 @Override public int read(byte[] b, int off, int len) throws IOException {
94 int result = in.read(b, off, len);
97 return read(b, off, len);
MultiReader.java 51 @Override public int read(char cbuf[], int off, int len) throws IOException {
55 int result = current.read(cbuf, off, len);
58 return read(cbuf, off, len);
  /external/smack/src/org/jivesoftware/smack/util/
ObservableReader.java 41 public int read(char[] cbuf, int off, int len) throws IOException {
42 int count = wrappedReader.read(cbuf, off, len);
44 String str = new String(cbuf, off, count);
  /libcore/luni/src/main/java/java/security/
SecureClassLoader.java 74 * @param off
82 * if {@code off} or {@code len} are not valid in respect to
91 protected final Class<?> defineClass(String name, byte[] b, int off, int len,
93 return cs == null ? defineClass(name, b, off, len) : defineClass(name,
94 b, off, len, getPD(cs));
  /libcore/luni/src/main/java/java/util/zip/
GZIPOutputStream.java 99 * Write up to nbytes of data from the given buffer, starting at offset off,
103 public void write(byte[] buffer, int off, int nbytes) throws IOException {
104 super.write(buffer, off, nbytes);
105 crc.update(buffer, off, nbytes);
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/asset/plugins/
HttpZipLocator.java 105 private static int get16(byte[] b, int off) {
106 return (b[off++] & 0xff) |
107 ((b[off] & 0xff) << 8);
110 private static int get32(byte[] b, int off) {
111 return (b[off++] & 0xff) |
112 ((b[off++] & 0xff) << 8) |
113 ((b[off++] & 0xff) << 16) |
114 ((b[off] & 0xff) << 24);
117 private static long getu32(byte[] b, int off) throws IOException{
118 return (b[off++]&0xff)
    [all...]

Completed in 999 milliseconds

1 2 3 4 5 6 78 91011>>