HomeSort by relevance Sort by last modified time
    Searched defs:size (Results 676 - 700 of 11184) sorted by null

<<21222324252627282930>>

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
AnnotationSetItem.java 54 int size = dexFile.readSmallUint(out.getCursor()); local
55 out.annotate(4, "size = %d", size);
57 for (int i=0; i<size; i++) {
AnnotationSetRefList.java 54 int size = dexFile.readSmallUint(out.getCursor()); local
55 out.annotate(4, "size = %d", size);
57 for (int i=0; i<size; i++) {
RawDexFile.java 90 @Override public int size() { method in class:RawDexFile
TypeListItem.java 54 int size = dexFile.readSmallUint(out.getCursor()); local
55 out.annotate(4, "size: %d", size);
57 for (int i=0; i<size; i++) {
92 int size = dexFile.readSmallUint(typeListOffset);
93 for (int i=0; i<size; i++) {
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/reference/
DexBackedMethodReference.java 81 @Override public int size() { return parameterCount; } method
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
StaticInitialValueIterator.java 61 private final int size; field in class:StaticInitialValueIterator.StaticInitialValueIteratorImpl
66 this.size = reader.readSmallUleb128();
71 if (index < size) {
79 if (index < size) {
VariableSizeCollection.java 43 private final int size; field in class:VariableSizeCollection
45 public VariableSizeCollection(@Nonnull DexBackedDexFile dexFile, int offset, int size) {
48 this.size = size;
56 return new VariableSizeIterator<T>(dexFile, offset, size) {
64 @Override public int size() { return size; }
VariableSizeIterator.java 43 protected final int size; field in class:VariableSizeIterator
47 protected VariableSizeIterator(@Nonnull DexBackedDexFile dexFile, int offset, int size) {
49 this.size = size;
52 protected VariableSizeIterator(@Nonnull DexReader reader, int size) {
54 this.size = size;
61 * @param index The index of the item being read. This is guaranteed to be less than {@code size}
72 return index < size;
77 if (index >= size) {
    [all...]
VariableSizeList.java 43 private final int size; field in class:VariableSizeList
45 public VariableSizeList(@Nonnull DexBackedDexFile dexFile, int offset, int size) {
48 this.size = size;
59 @Override public int size() { return size; } method in class:VariableSizeList
64 VariableSizeListIterator<T> iterator = new VariableSizeListIterator<T>(dexFile, offset, size) {
VariableSizeSet.java 43 private final int size; field in class:VariableSizeSet
45 public VariableSizeSet(@Nonnull DexBackedDexFile dexFile, int offset, int size) {
48 this.size = size;
56 return new VariableSizeIterator<T>(dexFile, offset, size) {
64 @Override public int size() { return size; }
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/builder/
BuilderAnnotationSet.java 57 @Override public int size() { method in class:BuilderAnnotationSet
58 return annotations.size();
BuilderTypeList.java 55 @Override public int size() { method in class:BuilderTypeList
56 return types.size();
  /external/squashfs-tools/kernel/fs/squashfs/
fragment.c 29 * location on disk and compressed size using a fragment lookup table.
48 * location of the fragment and its compressed size
58 int size; local
60 size = squashfs_read_metadata(sb, &fragment_entry, &start_block,
62 if (size < 0)
63 return size;
66 size = le32_to_cpu(fragment_entry.size);
68 return size;
  /external/squashfs-tools/squashfs-tools/
read_file.c 49 int res, size = 0; local
64 if(total + (MAX_LINE + 1) > size) {
65 line = realloc(line, size += (MAX_LINE + 1));
  /external/strace/
io.c 61 * data_size limits the cumulative size of printed data.
68 unsigned long size, cur, end, abbrev_end; local
75 size = len * sizeof_iov;
76 end = addr + size;
78 !addr || size / sizeof_iov != len || end < addr) {
sched.c 97 print_sched_attr(struct tcb *tcp, const long addr, unsigned int size)
100 uint32_t size; member in struct:__anon22865
110 if (size > sizeof(attr))
111 size = sizeof(attr);
112 if (umoven_or_printaddr(tcp, addr, size, &attr))
115 tprintf("{size=%u, sched_policy=", attr.size);
  /external/strace/tests/
sched_xetattr.c 44 uint32_t size; member in struct:__anon22886::__anon22887
59 printf("sched_getattr\\(0, \\{size=%u, sched_policy=SCHED_[A-Z]+, sched_flags=%s, sched_nice=%u, sched_priority=%u, sched_runtime=%" PRIu64 ", sched_deadline=%" PRIu64 ", sched_period=%" PRIu64 "\\}, 256, 0\\) += 0\n",
60 sched.attr.size,
72 printf("sched_setattr\\(0, \\{size=%u, sched_policy=SCHED_[A-Z]+, sched_flags=%s, sched_nice=%u, sched_priority=%u, sched_runtime=%" PRIu64 ", sched_deadline=%" PRIu64 ", sched_period=%" PRIu64 "\\}, 0\\) += 0\n",
73 sched.attr.size,
  /external/testng/src/test/java/test/thread/
SuiteThreadCountTest.java 32 Assert.assertEquals(m_threads.size(), 2, "Test should use 2 threads (suite level)");
TestThreadCountTest.java 37 Assert.assertEquals(m_threads.size(), 3, "Test should use 3 threads");
  /external/toybox/toys/other/
lspci.c 59 int fd, size = 6 + 2*((toys.optflags & FLAG_e) && p == toybuf); local
66 xreadall(fd, p, size);
67 memmove(p, p+2, size -= 2);
68 p[size] = 0;
  /external/toybox/toys/pending/
klogd.c 66 int prio, size, used = 0; local
67 char *start, *line_start, msg_buffer[16348]; //LOG_LINE_LENGTH - Ring buffer size
85 size = klogctl(2, start, sizeof(msg_buffer) - used - 1);
87 size = xread(TT.fd, start, sizeof(msg_buffer) - used - 1);
89 if (size < 0) perror_exit("error reading file:");
90 start[size] = '\0'; //Ensure last line to be NUL terminated.
  /external/toybox/toys/posix/
cmp.c 33 int i, len1, len2, min_len, size = sizeof(toybuf)/2; local
35 char *buf2 = toybuf+size;
47 len1 = readall(TT.fd, toybuf, size);
48 len2 = readall(fd, buf2, size);
  /external/tpm2/
BaseTypes.h 28 UINT16 size; member in struct:__anon23144
CommandCodeAttributes.c 88 UINT32 size = sizeof(s_ccAttr) / sizeof(s_ccAttr[0]); local
90 for(i = 0; i < size; i++) {
104 // This function returns the size of the decrypt size field. This function returns 0 if encryption is not allowed
109 // 2 size field is two bytes
110 // 4 size field is four bytes
128 // This function returns the size of the decrypt size field. This function returns 0 if decryption is not allowed
133 // 2 size field is two bytes
134 // 4 size field is four byte
    [all...]
ContextLoad.c 22 // TPM_RC_SIZE incorrect context blob size
38 INT32 size; local
46 // Check context blob size
56 size = (INT32) in->context.contextBlob.t.size;
57 result = TPM2B_DIGEST_Unmarshal(&integrity, &buffer, &size);
60 if(integrity.t.size != integritySize)
63 integritySize += sizeof(integrity.t.size);
80 in->context.contextBlob.t.size - integritySize,
83 // Read the fingerprint value, skip the leading integrity size
    [all...]

Completed in 172 milliseconds

<<21222324252627282930>>