HomeSort by relevance Sort by last modified time
    Searched refs:inCount (Results 1 - 25 of 34) sorted by null

1 2

  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/decoder/
Base64InputStream.java 77 int inCount = 0;
89 decodeAndEnqueue(inCount);
94 inputBuffer[inCount++] = sX;
95 if (inCount == 4) {
96 decodeAndEnqueue(inCount);
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldAndroidDeflateTest.java 127 int inCount = inBuf.length; // use all
139 if (deflater.needsInput() && inCount != 0) {
140 want = (inCount < LOCAL_BUF_SIZE) ? inCount : LOCAL_BUF_SIZE;
144 inCount -= want;
146 if (inCount == 0) {
165 private void expand(Inflater inflater, byte[] inBuf, int inCount,
172 //System.out.println("### starting expand, inCount is " + inCount);
178 if (inflater.needsInput() && inCount != 0)
    [all...]
  /frameworks/base/core/java/com/android/internal/app/procstats/
PssTable.java 68 public void mergeStats(int state, int inCount, long minPss, long avgPss, long maxPss,
73 setValue(key, PSS_SAMPLE_COUNT, inCount);
84 setValue(key, PSS_SAMPLE_COUNT, count + inCount);
95 (long)(((val*(double)count)+(avgPss*(double)inCount)) / (count+inCount)));
109 (long)(((val*(double)count)+(avgUss*(double)inCount)) / (count+inCount)));
123 (long)(((val*(double)count)+(avgUss*(double)inCount)) / (count+inCount)));
  /external/okhttp/okio/okio/src/main/java/okio/
Base64.java 42 int inCount = 0;
78 inCount++;
79 if (inCount % 4 == 0) {
86 int lastWordChars = inCount % 4;
  /external/swiftshader/third_party/LLVM/lib/Analysis/
ProfileVerifierPass.cpp 41 int inCount;
99 int inCount = 0;
110 inCount++;
132 << "inCount=" << inCount << ","
150 << "inCount=" << DI->inCount << ","
242 DI.outCount = DI.inCount = 0;
251 DI.inCount++;
256 DI.inCount++
    [all...]
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_graph.h 126 inline int incidentCount() const { return inCount; }
140 int16_t inCount;
188 if (inCount != 1)
nv50_ir_graph.cpp 69 --target->inCount;
90 inCount(0), outCount(0)
117 ++node->inCount;
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/jpegstream/
JPEGOutputStream.java 139 native private int writeInputBytes(byte[] inBuffer, int offset, int inCount);
JPEGInputStream.java 186 native private int readDecodedBytes( byte[] inBuffer, int offset, int inCount);
  /packages/apps/Gallery2/jni_jpegstream/src/
jpegstream.cpp 221 jbyteArray inBuffer, jint offset, jint inCount) {
233 int32_t in_len = static_cast<int32_t>(inCount);
247 jbyteArray inBuffer, jint offset, jint inCount) {
258 int32_t in_len = static_cast<int32_t>(inCount);
  /frameworks/ml/nn/common/
CpuExecutor.cpp 459 const size_t inCount = ins.size();
460 if ((inCount != 11 && inCount != 8) ||
461 !allParametersPresent(inCount, 1)) {
474 if (inCount == 11) {
549 const size_t inCount = ins.size();
550 if ((inCount != 10 && inCount != 7) ||
551 !allParametersPresent(inCount, 1)) {
563 if (inCount == 10)
    [all...]
  /system/core/liblog/
logprint.c 1020 size_t inCount;
1055 inCount = buf->len;
1056 if (inCount < 4) return -1;
1059 inCount -= 4;
1102 if ((inCount > 0) || fmtLen) {
1103 result = android_log_printBinaryEvent(&eventData, &inCount, &outBuf,
1115 result = android_log_printBinaryEvent(&eventData, &inCount, &outBuf,
1130 inCount = 0;
1135 if (inCount == 1 && *eventData == '\n') {
1137 inCount--
    [all...]
  /external/skia/src/core/
SkPictureData.cpp 460 bool new_array_from_buffer(SkReadBuffer& buffer, uint32_t inCount,
465 if (0 == inCount) {
468 if (!buffer.validate(SkTFitsIn<int>(inCount))) {
472 *outCount = inCount;
  /external/skqp/src/core/
SkPictureData.cpp 460 bool new_array_from_buffer(SkReadBuffer& buffer, uint32_t inCount,
465 if (0 == inCount) {
468 if (!buffer.validate(SkTFitsIn<int>(inCount))) {
472 *outCount = inCount;
  /external/skia/tests/
TextBlobTest.cpp 261 const RunDef in[], unsigned inCount,
269 for (unsigned i = 0; i < inCount; ++i) {
276 REPORTER_ASSERT(reporter, (inCount > 0) == SkToBool(blob));
  /external/skqp/tests/
TextBlobTest.cpp 261 const RunDef in[], unsigned inCount,
269 for (unsigned i = 0; i < inCount; ++i) {
276 REPORTER_ASSERT(reporter, (inCount > 0) == SkToBool(blob));
  /prebuilts/go/darwin-x86/src/runtime/
type.go 301 return (*[1 << 20]*_type)(add(unsafe.Pointer(t), uadd))[:t.inCount]
311 return (*[1 << 20]*_type)(add(unsafe.Pointer(t), uadd))[t.inCount : t.inCount+outCount]
383 inCount uint16
595 if ft.outCount != fv.outCount || ft.inCount != fv.inCount {
  /prebuilts/go/linux-x86/src/runtime/
type.go 301 return (*[1 << 20]*_type)(add(unsafe.Pointer(t), uadd))[:t.inCount]
311 return (*[1 << 20]*_type)(add(unsafe.Pointer(t), uadd))[t.inCount : t.inCount+outCount]
383 inCount uint16
595 if ft.outCount != fv.outCount || ft.inCount != fv.inCount {
  /prebuilts/go/darwin-x86/src/cmd/link/internal/ld/
decodesym.go 188 // Type.FuncType.inCount
302 inCount := decodetypeFuncInCount(arch, mtypSym)
303 for i := 0; i < inCount; i++ {
  /prebuilts/go/linux-x86/src/cmd/link/internal/ld/
decodesym.go 188 // Type.FuncType.inCount
302 inCount := decodetypeFuncInCount(arch, mtypSym)
303 for i := 0; i < inCount; i++ {
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderBuiltinPrecisionTests.cpp     [all...]
  /external/deqp/modules/glshared/
glsBuiltinPrecisionTests.cpp     [all...]
  /prebuilts/go/darwin-x86/src/reflect/
type.go 378 inCount uint16
1030 return int(tt.inCount)
1054 if t.inCount == 0 {
1057 return (*[1 << 20]*rtype)(add(unsafe.Pointer(t), uadd, "t.inCount > 0"))[:t.inCount]
1069 return (*[1 << 20]*rtype)(add(unsafe.Pointer(t), uadd, "outCount > 0"))[t.inCount : t.inCount+outCount]
    [all...]
  /prebuilts/go/linux-x86/src/reflect/
type.go 378 inCount uint16
1030 return int(tt.inCount)
1054 if t.inCount == 0 {
1057 return (*[1 << 20]*rtype)(add(unsafe.Pointer(t), uadd, "t.inCount > 0"))[:t.inCount]
1069 return (*[1 << 20]*rtype)(add(unsafe.Pointer(t), uadd, "outCount > 0"))[t.inCount : t.inCount+outCount]
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
reflect.go 1231 inCount := t.NumRecvs() + t.NumParams()
1236 ot = duint16(lsym, ot, uint16(inCount))
1242 dataAdd := (inCount + t.NumResults()) * Widthptr
    [all...]

Completed in 557 milliseconds

1 2