/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/ |
StreamBlockCipher.java | 46 int inEnd = inOff + len; 49 while (inStart < inEnd)
|
/libcore/luni/src/main/java/java/nio/charset/ |
CharsetDecoderICU.java | 47 private int inEnd; 99 inEnd = 0; 107 inEnd = 0; 113 int error = NativeConverter.decode(converterHandle, input, inEnd, output, outEnd, data, true); 139 int error = NativeConverter.decode(converterHandle, input, inEnd, output, outEnd, data, false); 179 inEnd = in.arrayOffset() + in.limit(); 182 inEnd = in.remaining(); 183 if (allocatedInput == null || inEnd > allocatedInput.length) { 184 allocatedInput = new byte[inEnd]; 188 in.get(allocatedInput, 0, inEnd); [all...] |
CharsetEncoderICU.java | 63 private int inEnd; 128 inEnd = 0; 136 inEnd = 0; 142 int error = NativeConverter.encode(converterHandle, input, inEnd, output, outEnd, data, true); 169 int error = NativeConverter.encode(converterHandle, input, inEnd, output, outEnd, data, false); 208 inEnd = in.arrayOffset() + in.limit(); 211 inEnd = in.remaining(); 212 if (allocatedInput == null || inEnd > allocatedInput.length) { 213 allocatedInput = new char[inEnd]; 217 in.get(allocatedInput, 0, inEnd); [all...] |
/external/opencv3/3rdparty/openexr/IlmImf/ |
ImfRleCompressor.cpp | 62 const char *inEnd = in + inLength; 67 while (runStart < inEnd) 69 while (runEnd < inEnd && 92 while (runEnd < inEnd && 93 ((runEnd + 1 >= inEnd || 95 (runEnd + 2 >= inEnd ||
|
/libcore/luni/src/main/java/libcore/icu/ |
NativeConverter.java | 23 public static native int decode(long converterHandle, byte[] input, int inEnd, 26 public static native int encode(long converterHandle, char[] input, int inEnd,
|
/frameworks/compile/mclinker/lib/Object/ |
ObjectLinker.cpp | 148 Module::input_iterator input, inEnd = m_pModule->input_end(); 149 for (input = m_pModule->input_begin(); input != inEnd; ++input) { 153 input, inEnd, m_pBuilder->getInputBuilder(), m_Config); 290 inEnd = m_pModule->getInputTree().bfs_end(); 291 for (input = m_pModule->getInputTree().bfs_begin(); input != inEnd; ++input) { 315 SectionMap::Output::iterator in, inBegin, inEnd; 317 inEnd = (*out)->end(); 324 for (in = inBegin; in != inEnd; ++in) { 412 SectionMap::Output::iterator in, inBegin, inEnd; 414 inEnd = (*out)->end() [all...] |
SectionMap.cpp | 162 Output::iterator in, inBegin = (*out)->begin(), inEnd = (*out)->end(); 163 for (in = inBegin; in != inEnd; ++in) { 177 Output::const_iterator in, inBegin = (*out)->begin(), inEnd = (*out)->end(); 178 for (in = inBegin; in != inEnd; ++in) { 190 Output::iterator in, inBegin = (*out)->begin(), inEnd = (*out)->end(); 191 for (in = inBegin; in != inEnd; ++in) { 229 Output::iterator in, inBegin = (*out)->begin(), inEnd = (*out)->end(); 230 for (in = inBegin; in != inEnd; ++in) { 264 Output::iterator in, inBegin = (*out)->begin(), inEnd = (*out)->end(); 265 for (in = inBegin; in != inEnd; ++in) [all...] |
/frameworks/compile/mclinker/lib/LD/ |
GarbageCollection.cpp | 127 Module::obj_iterator input, inEnd = m_Module.obj_end(); 128 for (input = m_Module.obj_begin(); input != inEnd; ++input) { 346 Module::obj_iterator input, inEnd = m_Module.obj_end(); 347 for (input = m_Module.obj_begin(); input != inEnd; ++input) {
|
/frameworks/compile/mclinker/lib/Core/ |
Linker.cpp | 112 inEnd = pModule.getInputTree().dfs_end(); 113 for (input = pModule.getInputTree().dfs_begin(); input != inEnd; ++input) {
|
/frameworks/compile/mclinker/lib/Target/ARM/ |
ARMLDBackend.cpp | 560 Module::const_obj_iterator input, inEnd = pModule.obj_end(); 561 for (input = pModule.obj_begin(); input != inEnd; ++input) { 824 Module::obj_iterator input, inEnd = pModule.obj_end(); 825 for (input = pModule.obj_begin(); input != inEnd; ++input) { [all...] |
/frameworks/compile/mclinker/lib/Target/AArch64/ |
AArch64LDBackend.cpp | 377 Module::obj_iterator input, inEnd = pModule.obj_end(); 378 for (input = pModule.obj_begin(); input != inEnd; ++input) {
|
/frameworks/compile/mclinker/lib/Target/Hexagon/ |
HexagonLDBackend.cpp | 552 Module::obj_iterator input, inEnd = pModule.obj_end(); 553 for (input = pModule.obj_begin(); input != inEnd; ++input) { [all...] |
/frameworks/compile/mclinker/lib/Target/ |
GNULDBackend.cpp | [all...] |
/development/tools/checkstyle/ |
checkstyle.jar | |
/prebuilts/sdk/tools/lib/ |
signapk.jar | |