Searched defs:buffer (Results 1 - 9 of 9) sorted by relevance

/dalvik/libdex/
H A Dsha1.h10 unsigned char buffer[64]; member in struct:SHA1_CTX
H A DDexProto.h35 size_t allocatedSize; /* size of the allocated buffer, if allocated */
36 char buffer[120]; /* buffer used to hold small-enough results */ member in struct:DexStringCache
70 * dexStringCacheRelease() if you want the buffer to survive past the
H A Dsha1.cpp108 const unsigned char buffer[64]);
136 const unsigned char buffer[64])
147 memcpy(block, buffer, 64);
149 block = (CHAR64LONG16*)buffer;
226 memcpy(&context->buffer[j], data, (i = 64-j));
227 SHA1Transform(context->state, context->buffer);
235 memcpy(&context->buffer[j], &data[i], len - i);
264 memset(context->buffer, 0, 64);
270 SHA1Transform(context->state, context->buffer);
286 unsigned char buffer[1638 local
135 SHA1Transform(unsigned long state[5], const unsigned char buffer[64]) argument
[all...]
/dalvik/vm/oo/
H A DObject.cpp328 * Copy the argument types into the given array using the given buffer
331 static inline void copyTypes(char* buffer, const char** argTypes, argument
341 argTypes[i] = buffer;
346 *(buffer++) = c;
353 *(buffer++) = c;
357 *(buffer++) = '\0';
377 * Make buffer big enough for all the argument type characters and
381 char buffer[argCount + (returnType - descriptor) - 2]; local
384 copyTypes(buffer, argTypes, argCount, descriptor);
/dalvik/tools/dexdeps/src/com/android/dexdeps/
H A DDexData.java437 * Fills the buffer by reading bytes from the DEX file.
439 void readBytes(byte[] buffer) throws IOException { argument
440 mDexFile.readFully(buffer);
/dalvik/vm/
H A DAllocTracker.cpp18 * Allocation tracking and reporting. We maintain a circular buffer with
21 * There are two basic approaches: manage the buffer with atomic updates
282 once in a memory buffer.
299 * We need to handle underflow in our circular buffer, so we add
387 * "baseLen" is zero. The return value is used to allocate a buffer.
388 * On the second call, "ptr" points to a data buffer, and "baseLen"
530 u1* buffer = NULL; local
570 * (Could also just write to an expanding buffer.)
582 * Part 3: allocate a buffer and generate the output.
586 buffer
[all...]
/dalvik/vm/compiler/
H A DDataflow.cpp824 char buffer[256]; local
830 buffer[0] = 0;
833 strcpy(buffer, "PHI");
836 sprintf(buffer, "Opcode %#x", opcode);
840 strcpy(buffer, dexGetOpcodeName(opcode));
845 strcat(buffer, note);
853 snprintf(buffer + strlen(buffer), 256, " v%d,", insn->vA);
857 snprintf(buffer + strlen(buffer), 25
924 char buffer[256]; local
1053 char buffer[256]; local
[all...]
/dalvik/vm/jdwp/
H A DJdwpAdb.cpp142 char buffer[CMSG_SPACE(sizeof(int))]; member in union:__anon68
153 msg.msg_control = cm_un.buffer;
154 msg.msg_controllen = sizeof(cm_un.buffer);
386 * Figure out if we have a full packet in the buffer.
403 * Consume bytes from the buffer.
405 * This would be more efficient with a circular buffer. However, we're
/dalvik/dx/src/com/android/dx/merge/
H A DDexMerger.java586 private void readSortableTypes(SortableType[] sortableTypes, Dex buffer, argument
588 for (ClassDef classDef : buffer.classDefs()) {
589 SortableType sortableType = indexMap.adjust(new SortableType(buffer, classDef));
595 + buffer.typeNames().get(classDef.getTypeIndex()));

Completed in 168 milliseconds