HomeSort by relevance Sort by last modified time
    Searched full:outcount (Results 1 - 25 of 39) sorted by null

1 2

  /external/okhttp/okio/src/main/java/okio/
Base64.java 42 int outCount = 0;
81 out[outCount++] = (byte) (word >> 16);
82 out[outCount++] = (byte) (word >> 8);
83 out[outCount++] = (byte) word;
94 out[outCount++] = (byte) (word >> 16);
98 out[outCount++] = (byte) (word >> 16);
99 out[outCount++] = (byte) (word >> 8);
103 if (outCount == out.length) return out;
106 byte[] prefix = new byte[outCount];
107 System.arraycopy(out, 0, prefix, 0, outCount);
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/decoder/
Base64InputStream.java 37 private int outCount = 0;
59 if (outIndex == outCount) {
61 if (outIndex == outCount) {
75 outCount = 0;
117 outCount = 3;
122 outCount = 2;
126 outCount = 1;
  /packages/apps/Exchange/src/com/android/exchange/adapter/
Base64InputStream.java 45 private int outCount = 0;
70 if (outIndex == outCount) {
72 if (outIndex == outCount) {
86 outCount = 0;
143 outCount = 3;
148 outCount = 2;
152 outCount = 1;
  /external/chromium_org/third_party/mesa/src/src/glx/
dri2.h 71 int *outCount);
81 int count, int *outCount);
dri2.c 402 unsigned int *attachments, int count, int *outCount)
432 *outCount = rep.count;
461 unsigned int *attachments, int count, int *outCount)
491 *outCount = rep.count;
  /external/mesa3d/src/glx/
dri2.h 71 int *outCount);
81 int count, int *outCount);
dri2.c 402 unsigned int *attachments, int count, int *outCount)
432 *outCount = rep.count;
461 unsigned int *attachments, int count, int *outCount)
491 *outCount = rep.count;
  /external/chromium_org/third_party/mesa/src/src/mesa/tnl/
t_vb_cliptmp.h 36 GLuint outcount = 0; \
45 outlist[outcount++] = idxPrev; \
63 outlist[outcount++] = newvert++; \
70 if (outcount < 3) \
77 n = outcount; \
  /external/mesa3d/src/mesa/tnl/
t_vb_cliptmp.h 36 GLuint outcount = 0; \
45 outlist[outcount++] = idxPrev; \
63 outlist[outcount++] = newvert++; \
70 if (outcount < 3) \
77 n = outcount; \
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
draw_pipe_clip.c 336 unsigned outcount = 0; local
354 assert(outcount < MAX_CLIPPED_VERTICES);
355 if (outcount >= MAX_CLIPPED_VERTICES)
357 outEdges[outcount] = *edge_prev;
358 outlist[outcount++] = vert_prev;
370 assert(outcount < MAX_CLIPPED_VERTICES);
371 if (outcount >= MAX_CLIPPED_VERTICES)
374 new_edge = &outEdges[outcount];
375 outlist[outcount++] = new_vert;
422 n = outcount;
    [all...]
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_clip.c 336 unsigned outcount = 0; local
354 assert(outcount < MAX_CLIPPED_VERTICES);
355 if (outcount >= MAX_CLIPPED_VERTICES)
357 outEdges[outcount] = *edge_prev;
358 outlist[outcount++] = vert_prev;
370 assert(outcount < MAX_CLIPPED_VERTICES);
371 if (outcount >= MAX_CLIPPED_VERTICES)
374 new_edge = &outEdges[outcount];
375 outlist[outcount++] = new_vert;
422 n = outcount;
    [all...]
  /frameworks/base/core/jni/
android_view_DisplayEventReceiver.cpp 65 bool processPendingEvents(nsecs_t* outTimestamp, int32_t* id, uint32_t* outCount);
155 nsecs_t* outTimestamp, int32_t* outId, uint32_t* outCount) {
170 *outCount = ev.vsync.count;
  /external/chromium_org/third_party/libva/va/x11/
va_dri2.h 66 int *outCount);
  /hardware/intel/common/libva/va/x11/
va_dri2.h 66 int *outCount);
va_dri2.c 249 int *outCount)
279 *outCount = rep.count;
  /system/core/liblog/
logprint.c 428 size_t outCount;
450 outCount = snprintf(outBuf, outBufLen, "%d", ival);
451 if (outCount < outBufLen) {
452 outBuf += outCount;
453 outBufLen -= outCount;
471 outCount = snprintf(outBuf, outBufLen, "%lld", lval);
472 if (outCount < outBufLen) {
473 outBuf += outCount;
474 outBufLen -= outCount;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/nv50/codegen/
nv50_ir_graph.h 127 inline int outgoingCount() const { return outCount; }
141 int16_t outCount;
nv50_ir_graph.cpp 61 --origin->outCount;
90 inCount(0), outCount(0)
116 ++this->outCount;
  /external/mesa3d/src/gallium/drivers/nv50/codegen/
nv50_ir_graph.h 127 inline int outgoingCount() const { return outCount; }
141 int16_t outCount;
nv50_ir_graph.cpp 61 --origin->outCount;
90 inCount(0), outCount(0)
116 ++this->outCount;
  /libcore/luni/src/test/java/libcore/java/io/
OldFileWriterTest.java 136 int outCount = reader.read(outChars);
137 String outStr = new String(outChars, 0, outCount);
  /dalvik/dx/src/com/android/dx/merge/
DexMerger.java 248 int outCount = 0;
277 updateIndex(aOffset, aIndexMap, aIndex++, outCount);
283 updateIndex(bOffset, bIndexMap, bIndex++, outCount);
291 outCount++;
294 getSection(contentsOut).size = outCount;
309 int outCount = 0;
312 updateIndex(e1.offset, getIndexMap(e1.source), e1.index, outCount - 1);
316 updateIndex(e2.offset, getIndexMap(e2.source), e2.index, outCount - 1);
320 outCount++;
323 getSection(contentsOut).size = outCount;
    [all...]
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/lib/
liblog.so 
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/lib/
liblog.so 
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/lib/
liblog.so 

Completed in 623 milliseconds

1 2