Searched defs:used (Results 1 - 25 of 112) sorted by relevance

12345

/external/dropbear/
H A Dcircbuffer.h32 unsigned int used; member in struct:circbuf
/external/valgrind/main/callgrind/
H A Dcosts.h24 Int used; member in struct:_CostChunk
30 * Typically used from ct_events.c */
/external/bison/src/
H A Dsymlist.h28 /* A list of symbols, used during the parsing to store the rules. */
43 /* Whether this symbol's value is used in the current action. */
44 bool used; member in struct:symbol_list
81 void symbol_list_n_used_set (symbol_list *l, int n, bool used);
H A Dsymlist.c44 res->used = false;
66 fprintf (stderr, l->used ? " used" : " unused");
157 symbol_list_n_used_set (symbol_list *l, int n, bool used) argument
161 l->used = used;
/external/clang/include/clang/Sema/
H A DWeak.h10 // This file defines the WeakInfo class, which is used to store
28 bool used; // identifier later declared? member in class:clang::WeakInfo
31 : alias(0), loc(SourceLocation()), used(false) {}
33 : alias(Alias), loc(Loc), used(false) {}
36 void setUsed(bool Used=true) { used = Used; }
37 inline bool getUsed() { return used; }
/external/proguard/src/proguard/shrink/
H A DInterfaceUsageMarker.java32 * classes that are being used in the visited class.
46 private boolean used; field in class:InterfaceUsageMarker
52 * @param usageMarker the usage marker that is used to mark the classes
70 // Check if any interfaces are being used.
85 // At least one if this interface's interfaces is being used.
104 used = classUsed;
111 used = true;
124 // The ClassConstant isn't marked as being used yet. But maybe it
127 classUsed = used;
131 // The class is being used
[all...]
/external/speex/libspeex/
H A Dvq_bfin.h20 contributors may be used to endorse or promote products derived from
73 int i,k,used; local
74 used = 0;
96 for (k=N-1; (k >= 1) && (k > used || dist < best_dist[k-1]); k--)
103 used++;
H A Dvq.c17 contributors may be used to endorse or promote products derived from
78 int i,j,k,used; local
79 used = 0;
92 for (k=N-1; (k >= 1) && (k > used || dist < best_dist[k-1]); k--)
99 used++;
112 int i,j,k, sign, used; local
113 used=0;
134 for (k=N-1; (k >= 1) && (k > used || dist < best_dist[k-1]); k--)
141 used++;
H A Dvq_sse.h19 contributors may be used to endorse or promote products derived from
38 int i,j,k,used; local
42 used = 0;
59 for (k=N-1; (k >= 1) && (k > used || dist[i] < best_dist[k-1]); k--)
66 used++;
77 int i,j,k,used; local
81 used = 0;
108 for (k=N-1; (k >= 1) && (k > used || dist[i] < best_dist[k-1]); k--)
115 used++;
/external/valgrind/main/memcheck/tests/
H A Dmallinfo.c15 size_t used; local
36 used = mi.uordblks + mi.hblkhd;
37 if (used < min)
40 if (used > max)
43 // used should be reasonably close to min
45 if (used/5*4 > min)
71 return used;
H A Dleak-pool.c18 size_t used; member in struct:pool
25 void *a = p->buf + p->used;
26 assert(p->used + n < p->allocated);
28 p->used += n;
38 p->used = 0;
/external/chromium/chrome/browser/chromeos/
H A Dnetwork_message_observer_unittest.cc15 int64 end_sec, int64 bytes, int64 used) {
21 plan.data_bytes_used = used;
30 // (unlimited OR used bytes < max bytes) AND
14 CreateDataPlan(CellularDataPlanType type, int64 start_sec, int64 end_sec, int64 bytes, int64 used) argument
/external/mesa3d/src/glsl/
H A Dopt_dead_functions.cpp41 this->used = false;
45 bool used; member in class:signature_entry
94 entry->used = true;
106 entry->used = true;
119 /* Now that we've figured out which function signatures are used, remove
126 if (!entry->used) {
/external/regex-re2/util/
H A Dstrutil.cc20 int used = 0; local
23 if (dest_len - used < 2) // Need space for two letter escape
28 case '\n': dest[used++] = '\\'; dest[used++] = 'n'; break;
29 case '\r': dest[used++] = '\\'; dest[used++] = 'r'; break;
30 case '\t': dest[used++] = '\\'; dest[used++] = 't'; break;
31 case '\"': dest[used++] = '\\'; dest[used
[all...]
/external/iproute2/include/
H A Dip6tables.h109 unsigned int used; member in struct:ip6tables_target
H A Diptables.h135 unsigned int used; member in struct:iptables_target
/external/qemu/distrib/zlib-1.2.3/
H A Dinftrees.c24 lens shorts, which is used as a work area. type is the type of code
47 unsigned used; /* code entries in table used */ local
99 The length counts are used for other purposes as well, i.e. finding
151 filled is at next and has curr index bits. The code being used is huff
165 counts are used for this, and so count[] is decremented as codes are
168 used keeps track of how many table entries have been allocated from the
184 base = extra = work; /* dummy value--not used */
208 used = 1U << root; /* use root table entries */
209 mask = used
[all...]
/external/wpa_supplicant_6/wpa_supplicant/src/utils/
H A Dwpabuf.h25 size_t used; /* length of data in the buffer */ member in struct:wpabuf
57 * Returns: Currently used length of the buffer
61 return buf->used;
71 return buf->size - buf->used;
148 buf->size = buf->used = len;
/external/zlib/contrib/infback9/
H A Dinftree9.c24 lens shorts, which is used as a work area. type is the type of code
47 unsigned used; /* code entries in table used */ local
101 The length counts are used for other purposes as well, i.e. finding
145 filled is at next and has curr index bits. The code being used is huff
159 counts are used for this, and so count[] is decremented as codes are
162 used keeps track of how many table entries have been allocated from the
177 base = extra = work; /* dummy value--not used */
201 used = 1U << root; /* use root table entries */
202 mask = used
[all...]
/external/zlib/
H A Dinftrees.c24 lens shorts, which is used as a work area. type is the type of code
47 unsigned used; /* code entries in table used */ local
99 The length counts are used for other purposes as well, i.e. finding
151 filled is at next and has curr index bits. The code being used is huff
165 counts are used for this, and so count[] is decremented as codes are
168 used keeps track of how many table entries have been allocated from the
183 base = extra = work; /* dummy value--not used */
207 used = 1U << root; /* use root table entries */
208 mask = used
[all...]
/external/chromium/net/disk_cache/
H A Dblock_files_unittest.cc237 int used, load; local
239 files.GetFileStats(0, &used, &load);
240 EXPECT_EQ(101, used);
243 files.GetFileStats(1, &used, &load);
244 EXPECT_EQ(203, used);
247 files.GetFileStats(2, &used, &load);
248 EXPECT_EQ(0, used);
279 // The first part of the allocation map should be completely filled. We used
/external/elfutils/backends/
H A Dia64_retval.c135 case 10: /* x86-style long double, not really used */
183 int used = hfa_type (child_typedie, locp, fpregs_used); local
184 if (used < 0 || used > 8)
185 return used;
186 if (used > max_used)
187 max_used = used;
216 int used = hfa_type (base_typedie, locp, 0); local
217 if (used < 0 || used >
[all...]
/external/openssh/
H A Dsession.h32 int used; member in struct:Session
/external/oprofile/libop/
H A Dop_events.h46 int used; /**< used by events file parser */ member in struct:op_unit_mask
106 * free memory used by any call to above function. Need to be called only once
/external/qemu/distrib/sdl-1.2.12/src/video/dga/
H A DSDL_dgavideo.h56 int used; member in struct:vidmem_bucket

Completed in 476 milliseconds

12345