HomeSort by relevance Sort by last modified time
    Searched defs:sz (Results 51 - 75 of 265) sorted by null

1 23 4 5 6 7 8 91011

  /dalvik/dx/src/com/android/dx/dex/code/form/
Form21c.java 123 int sz = regs.size(); local
124 BitSet bits = new BitSet(sz);
127 if (sz == 1) {
Form31c.java 118 int sz = regs.size(); local
119 BitSet bits = new BitSet(sz);
122 if (sz == 1) {
Form3rc.java 88 int sz = regs.size(); local
Form41c.java 120 int sz = regs.size(); local
121 BitSet bits = new BitSet(sz);
124 if (sz == 1) {
Form5rc.java 87 int sz = regs.size(); local
  /dalvik/dx/src/com/android/dx/dex/file/
ClassDefsSection.java 92 int sz = classDefs.size(); local
93 int offset = (sz == 0) ? 0 : getFileOffset();
96 out.annotate(4, "class_defs_size: " + Hex.u4(sz));
100 out.writeInt(sz);
132 int sz = classDefs.size(); local
135 orderedDefs = new ArrayList<ClassDefItem>(sz);
144 idx = orderItems0(type, idx, sz - idx);
178 int sz = interfaces.size(); local
179 for (int i = 0; i < sz; i++) {
ProtoIdsSection.java 68 int sz = protoIds.size(); local
69 int offset = (sz == 0) ? 0 : getFileOffset();
71 if (sz > 65536) {
76 out.annotate(4, "proto_ids_size: " + Hex.u4(sz));
80 out.writeInt(sz);
StringIdsSection.java 82 int sz = strings.size(); local
83 int offset = (sz == 0) ? 0 : getFileOffset();
86 out.annotate(4, "string_ids_size: " + Hex.u4(sz));
90 out.writeInt(sz);
TypeIdsSection.java 81 int sz = typeIds.size(); local
82 int offset = (sz == 0) ? 0 : getFileOffset();
84 if (sz > 65536) {
89 out.annotate(4, "type_ids_size: " + Hex.u4(sz));
93 out.writeInt(sz);
UniformItemSection.java 47 int sz = items.size(); local
49 if (sz == 0) {
54 return sz * items.iterator().next().writeSize();
  /dalvik/dx/src/com/android/dx/ssa/
InterferenceRegisterMapper.java 145 int sz = oldSpecs.size(); local
147 for (int i = 0; i < sz; i++) {
  /external/iproute2/tc/
f_rsvp.c 114 int sz = 1; local
118 sz = 4;
122 sz = 2;
140 if (sz == 1) {
151 } else if (sz == 2) {
tc_core.c 90 unsigned tc_adjust_size(unsigned sz, unsigned mpu, enum link_layer linklayer)
92 if (sz < mpu)
93 sz = mpu;
97 return tc_align_to_atm(sz);
101 return sz;
114 unsigned sz; local
128 sz = tc_adjust_size((i + 1) << cell_log, mpu, linklayer);
129 rtab[i] = tc_calc_xmittime(bps, sz);
132 r->cell_align=-1; // Due to the sz calc
145 unsigned int sz; local
    [all...]
  /external/libvpx/vp8/encoder/
quantize.c 25 int x, y, z, sz; local
46 sz = (z >> 31); // sign of z
47 x = (z ^ sz) - sz; // x = abs(z)
54 x = (y ^ sz) - sz; // get the sign back
72 int x, y, z, sz; local
86 sz = (z >> 31); // sign of z
87 x = (z ^ sz) - sz; // x = abs(z
109 int x, y, z, sz; local
166 int sz; local
221 int x, y, z, sz; local
    [all...]
  /external/opencv/cv/src/
_cv.h 102 CvSize *sz; member in struct:CvPyramid
  /external/openssl/crypto/bio/
bss_file.c 125 int sz, len_0 = (int)strlen(filename)+1; local
140 if ((sz=MultiByteToWideChar(CP_UTF8,(flags=MB_ERR_INVALID_CHARS),
143 (sz=MultiByteToWideChar(CP_UTF8,(flags=0),
148 WCHAR *wfilename = _alloca(sz*sizeof(WCHAR));
151 filename,len_0,wfilename,sz) &&
  /external/valgrind/main/drd/
drd_semaphore.c 68 Word sz; local
71 sz = VG_(sizeXA)(p->last_sem_post_seg);
74 p->a1, sz - 1, sz);
77 if (sz > 0)
79 sg = *(Segment**)VG_(indexXA)(p->last_sem_post_seg, sz - 1);
  /external/webkit/Source/WebCore/platform/
Arena.cpp 175 unsigned int sz = max(pool->arenasize, nb); local
176 sz += sizeof *a + pool->mask; /* header and alignment slop */
181 a = (Arena*)fastMalloc(sz);
183 a->limit = (uword)a + sz;
  /sdk/emulator/qtools/
read_elf.cpp 134 unsigned long sz = hdr->e_shnum * hdr->e_shentsize; local
143 if (fread(shdr, sz, 1, f) != 1)
  /system/bluetooth/bluedroid/
bluetooth.c 52 int sz; local
61 sz = read(fd, &buf, sizeof(buf));
63 if (sz >= 9 && memcmp(buf, "bluetooth", 9) == 0) {
74 int sz; local
89 sz = read(fd, &buffer, 1);
90 if (sz != 1) {
111 int sz; local
126 sz = write(fd, &buffer, 1);
127 if (sz < 0) {
  /system/core/mkbootimg/
mkbootimg.c 31 int sz; local
38 sz = lseek(fd, 0, SEEK_END);
39 if(sz < 0) goto oops;
43 data = (char*) malloc(sz);
46 if(read(fd, data, sz) != sz) goto oops;
49 if(_sz) *_sz = sz;
  /system/netd/
logwrapper.c 35 int sz; local
36 while ((sz = read(parent_read, &buffer[b], sizeof(buffer) - 1 - b)) > 0) {
38 sz += b;
40 for (b = 0; b < sz; b++) {
  /bionic/libc/bionic/
system_properties.c 59 unsigned sz; local
75 sz = atoi(env + 1);
77 pa = mmap(0, sz, PROT_READ, MAP_SHARED, fd, 0);
84 munmap(pa, sz);
  /cts/tools/dasm/src/dasm/
DasmCatchBuilder.java 118 int sz = unprocessed_catches.size(); local
119 HashSet<Type> result = new HashSet<Type>(sz);
120 for (int i = 0; i < sz; i++) {
150 int sz = unprocessed_catches.size(); local
151 for (int i = 0; i < sz; i++) {
174 int sz = unprocessed_catches.size(); local
175 CatchTable result = new CatchTable(sz);
176 for (int i = 0; i < sz; i++) {
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
ArrayData.java 72 int sz = values.size(); local
74 if (sz <= 0) {
103 int sz = initLength; local
105 return 4 + ((sz * elemWidth) + 1) / 2;
111 int sz = values.size(); local
121 for (int i = 0; i < sz; i++) {
128 for (int i = 0; i < sz; i++) {
135 for (int i = 0; i < sz; i++) {
142 for (int i = 0; i < sz; i++) {
153 if (elemWidth == 1 && (sz % 2 != 0))
169 int sz = values.size(); local
185 int sz = values.size(); local
    [all...]

Completed in 6454 milliseconds

1 23 4 5 6 7 8 91011