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

1 2 3 4 5 6 7 8 91011>>

  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.equinox.launcher.gtk.linux.x86_1.1.2.R36x_v20101019_1345/META-INF/
eclipse.inf 0 #Processed using Jarprocessor
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.equinox.launcher.win32.win32.x86_1.1.2.R36x_v20101019_1345/META-INF/
eclipse.inf 0 #Processed using Jarprocessor
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/META-INF/
eclipse.inf 0 #Processed using Jarprocessor
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/META-INF/
eclipse.inf 0 #Processed using Jarprocessor
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/META-INF/
eclipse.inf 0 #Processed using Jarprocessor
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.junit_3.8.2.v3_8_2_v20100427-1100/META-INF/
eclipse.inf 0 #Processed using Jarprocessor
  /external/lzma/CPP/7zip/Common/
InOutTempBuffer.cpp 54 UInt32 processed; local
55 if (!_outFile.Write(data, size, processed))
57 _crc = CrcUpdate(_crc, data, processed);
58 _size += processed;
59 return (processed == size);
98 UInt32 processed; local
99 if (!inFile.ReadPart(_buf, kTempBufSize, processed))
101 if (processed == 0)
103 RINOK(WriteStream(stream, _buf, processed));
104 crc = CrcUpdate(crc, _buf, processed);
    [all...]
CWrappers.h 38 UInt64 Processed;
52 UInt64 Processed;
63 Processed = 0;
67 UInt64 GetProcessed() const { return Processed + (Cur - Buf); }
85 UInt64 Processed;
96 Processed = 0;
99 UInt64 GetProcessed() const { return Processed + (Cur - Buf); }
  /external/chromium_org/third_party/lzma_sdk/
7zStream.c 12 size_t processed = size; local
13 RINOK(stream->Read(stream, buf, &processed));
14 if (processed == 0)
16 buf = (void *)((Byte *)buf + processed);
17 size -= processed;
29 size_t processed = 1; local
30 RINOK(stream->Read(stream, buf, &processed));
31 return (processed == 1) ? SZ_OK : SZ_ERROR_INPUT_EOF;
54 size_t processed = size; local
55 RINOK(stream->Read(stream, buf, &processed));
    [all...]
Bra.h 28 The number of processed bytes. If you call these functions with multiple calls,
29 you must start next call with first byte after block of processed bytes.
49 SizeT processed = Convert(data, size, ip, 1);
50 data += processed;
51 size -= processed;
52 ip += processed;
7zFile.c 109 DWORD processed = 0; local
110 BOOL res = ReadFile(p->handle, data, curSize, &processed, NULL);
111 data = (void *)((Byte *)data + processed);
112 originalSize -= processed;
113 *size += processed;
116 if (processed == 0)
144 DWORD processed = 0; local
145 BOOL res = WriteFile(p->handle, data, curSize, &processed, NULL);
146 data = (void *)((Byte *)data + processed);
147 originalSize -= processed;
    [all...]
  /external/lzma/C/
7zStream.c 12 size_t processed = size; local
13 RINOK(stream->Read(stream, buf, &processed));
14 if (processed == 0)
16 buf = (void *)((Byte *)buf + processed);
17 size -= processed;
29 size_t processed = 1; local
30 RINOK(stream->Read(stream, buf, &processed));
31 return (processed == 1) ? SZ_OK : SZ_ERROR_INPUT_EOF;
54 size_t processed = size; local
55 RINOK(stream->Read(stream, buf, &processed));
    [all...]
Bra.h 28 The number of processed bytes. If you call these functions with multiple calls,
29 you must start next call with first byte after block of processed bytes.
49 SizeT processed = Convert(data, size, ip, 1);
50 data += processed;
51 size -= processed;
52 ip += processed;
7zFile.c 109 DWORD processed = 0; local
110 BOOL res = ReadFile(p->handle, data, curSize, &processed, NULL);
111 data = (void *)((Byte *)data + processed);
112 originalSize -= processed;
113 *size += processed;
116 if (processed == 0)
144 DWORD processed = 0; local
145 BOOL res = WriteFile(p->handle, data, curSize, &processed, NULL);
146 data = (void *)((Byte *)data + processed);
147 originalSize -= processed;
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
StreamCipher.java 30 * @param in the byte to be processed.
39 * @param inOff the offset into the in array where the data to be processed starts.
40 * @param len the number of bytes to be processed.
41 * @param out the output buffer the processed bytes go into.
42 * @param outOff the offset into the output byte array the processed data starts at.
  /external/chromium/base/
message_pump_glib_x_dispatch.h 22 EVENT_IGNORED, // The event was not processed.
23 EVENT_PROCESSED, // The event has been processed.
24 EVENT_QUIT // The event was processed and the message-loop should
29 // (i.e. not processed). EVENT_PROCESSED is returned if the event was
30 // processed. The nested loop exits immediately if EVENT_QUIT is returned.
  /external/llvm/test/Assembler/
2006-09-28-CrashOnInvalid.ll 2 ; This tests that a simple error is caught and processed correctly.
  /frameworks/base/core/java/com/android/internal/util/
IState.java 29 * Returned by processMessage to indicate the the message was processed.
34 * Returned by processMessage to indicate the the message was NOT processed.
49 * Called when a message is to be processed by the
57 * be processed until this routine returns.
61 * if the message wasn't processed.
  /external/chromium_org/tools/grit/grit/tool/
preprocess_interface.py 19 rctext: string containing the contents of the RC file being processed
23 The processed text.
  /external/chromium_org/ui/base/ime/
input_method_delegate.h 22 // Dispatch a key event already processed by the input method.
23 // Returns true if the event was processed.
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
CMSProcessable.java 12 * generic routine to copy out the data we want processed - the OutputStream
  /external/chromium/chrome/common/extensions/docs/static/
experimental.clipboard.html 9 successfully processed and handled. Most callers won't care, since a failure
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/example/
handler_map.txt 5 # Aliasing is processed from the top to the bottom of the line, and
  /external/chromium_org/third_party/openssl/openssl/crypto/des/
DES.pm 16 # processed by the autosplit program.
  /external/openssl/crypto/des/
DES.pm 16 # processed by the autosplit program.

Completed in 658 milliseconds

1 2 3 4 5 6 7 8 91011>>