HomeSort by relevance Sort by last modified time
    Searched defs:writeInt (Results 26 - 50 of 452) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/classfile/instruction/
Instruction.java 1085 protected static void writeInt(byte[] code, int offset, int value)
1100 case 4: writeInt( code, offset, value); break;
1133 case 4: writeInt( code, offset, value); break;
  /external/skia/src/core/
SkWriteBuffer.cpp 54 void SkBinaryWriteBuffer::writeInt(int32_t value) {
138 this->writeInt(image->width());
139 this->writeInt(image->height());
  /external/skia/tools/debugger/
SkJsonWriteBuffer.cpp 54 void SkJsonWriteBuffer::writeInt(int32_t value) {
  /external/skqp/src/core/
SkWriteBuffer.cpp 54 void SkBinaryWriteBuffer::writeInt(int32_t value) {
138 this->writeInt(image->width());
139 this->writeInt(image->height());
  /external/skqp/tools/debugger/
SkJsonWriteBuffer.cpp 54 void SkJsonWriteBuffer::writeInt(int32_t value) {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/
DexDataWriter.java 91 writeInt((int)value);
92 writeInt((int)(value >> 32));
95 public static void writeInt(OutputStream out, int value) throws IOException {
102 public void writeInt(int value) throws IOException {
103 writeInt(this, value);
EncodedValueWriter.java 122 public void writeInt(int value) throws IOException {
  /external/sonic/
wave.c 56 static void writeInt(
175 writeInt(file, 36 /* + dataLength */); /* 04 - how big is the rest of this file? */
178 writeInt(file, 16); /* 16 - size of this chunk */
181 writeInt(file, sampleRate); /* 24 - samples per second (numbers per second) */
182 writeInt(file, sampleRate * 2); /* 28 - bytes per second */
186 writeInt(file, 0); /* 40 - how big is this data chunk */
302 writeInt(file, file->bytesWritten - 8);
312 writeInt(file, file->bytesWritten - 48);
  /frameworks/base/core/java/android/content/pm/
InstrumentationInfo.java 175 dest.writeInt((handleProfiling == false) ? 0 : 1);
176 dest.writeInt((functionalTest == false) ? 0 : 1);
  /frameworks/base/core/java/android/view/autofill/
AutofillValue.java 198 parcel.writeInt(mType);
205 parcel.writeInt((Boolean) mValue ? 1 : 0);
208 parcel.writeInt((Integer) mValue);
  /libcore/ojluni/src/main/java/java/io/
DataOutputStream.java 196 public final void writeInt(int v) throws IOException {
242 writeInt(Float.floatToIntBits(v));
  /libcore/ojluni/src/main/java/java/sql/
SQLOutput.java 119 void writeInt(int x) throws SQLException;
  /libcore/ojluni/src/main/java/java/util/zip/
GZIPOutputStream.java 201 writeInt((int)crc.getValue(), buf, offset); // CRC-32 of uncompr. data
202 writeInt(def.getTotalIn(), buf, offset + 4); // Number of uncompr. bytes
209 private void writeInt(int i, byte[] buf, int offset) throws IOException {
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
ProfileData.java 52 private byte mScratch[] = new byte[4]; // scratch space for writeInt()
106 writeInt(0);
107 writeInt(3);
108 writeInt(1);
109 writeInt(20000); // Sampling period: 20ms
110 writeInt(0);
116 writeInt(0);
117 writeInt(1);
118 writeInt(0);
132 writeInt(node.sampleCount)
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/MultiUserStorageApp/src/com/android/cts/multiuserstorageapp/
MultiUserStorageTest.java 23 import static com.android.cts.externalstorageapp.CommonExternalStorageTest.writeInt;
71 writeInt(buildApiPath(FILE_SINGLETON), uid);
72 writeInt(buildApiPath(FILE_MY_UID), uid);
80 writeInt(new File(path, FILE_SINGLETON), uid);
114 writeInt(buildApiObbPath(FILE_OBB_API_SINGLETON), OBB_API_VALUE);
115 writeInt(buildEnvObbPath(FILE_OBB_SINGLETON), OBB_VALUE);
  /external/annotation-tools/asmx/src/org/objectweb/asm/commons/
SerialVersionUIDAdder.java 334 dos.writeInt(access
369 dos.writeInt(Opcodes.ACC_STATIC);
456 dos.writeInt(items[i].access);
  /external/okhttp/okio/okio/src/main/java/okio/
RealBufferedSink.java 137 @Override public BufferedSink writeInt(int i) throws IOException {
139 buffer.writeInt(i);
  /external/turbine/java/com/google/turbine/bytecode/
ClassWriter.java 95 output.writeInt(((IntValue) value).value());
117 result.writeInt(MAGIC);
  /frameworks/base/core/java/android/app/slice/
SliceItem.java 349 dest.writeInt((Integer) obj);
  /frameworks/base/core/java/android/bluetooth/le/
ScanFilter.java 100 dest.writeInt(mDeviceName == null ? 0 : 1);
104 dest.writeInt(mDeviceAddress == null ? 0 : 1);
108 dest.writeInt(mServiceUuid == null ? 0 : 1);
111 dest.writeInt(mServiceUuidMask == null ? 0 : 1);
116 dest.writeInt(mServiceDataUuid == null ? 0 : 1);
119 dest.writeInt(mServiceData == null ? 0 : 1);
121 dest.writeInt(mServiceData.length);
124 dest.writeInt(mServiceDataMask == null ? 0 : 1);
126 dest.writeInt(mServiceDataMask.length);
131 dest.writeInt(mManufacturerId)
    [all...]
  /frameworks/base/core/java/android/content/
SyncRequest.java 141 parcel.writeInt((mIsPeriodic ? 1 : 0));
142 parcel.writeInt((mDisallowMetered ? 1 : 0));
143 parcel.writeInt((mIsAuthority ? 1 : 0));
144 parcel.writeInt((mIsExpedited? 1 : 0));
  /frameworks/base/core/java/android/os/
StatsDimensionsValue.java 285 out.writeInt(mField);
286 out.writeInt(mValueType);
298 out.writeInt((Integer) value);
311 out.writeInt(values.length);
  /frameworks/base/core/java/android/view/
ViewHierarchyEncoder.java 105 writeInt(v);
166 private void writeInt(int i) {
169 mStream.writeInt(i);
  /frameworks/base/media/java/android/media/
SRTRenderer.java 172 parcel.writeInt(KEY_LOCAL_SETTING);
173 parcel.writeInt(KEY_START_TIME);
174 parcel.writeInt((int) cue.mStartTimeMs);
176 parcel.writeInt(KEY_STRUCT_TEXT);
183 parcel.writeInt(buf.length);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
ConversationViewState.java 213 dest.writeInt(read ? 1 : 0);
214 dest.writeInt(expansionState == null ? -1 : expansionState.intValue());
215 dest.writeInt(showImages ? 1 : 0);

Completed in 293 milliseconds

12 3 4 5 6 7 8 91011>>