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

1234567891011

/external/kmod/shared/
H A Dstrbuf.h11 unsigned used; member in struct:strbuf
/external/clang/test/CodeGenCXX/
H A Dlambda-expressions.cpp6 // CHECK: @used = internal global
7 auto used = [](int i) { return i+1; }; variable
8 void *use = &used;
/external/clang/test/SemaCXX/
H A Dwarn-unused-attribute.cpp14 Test used; local
16 used.use();
/external/webrtc/webrtc/base/
H A Dratelimiter.cc20 void RateLimiter::Use(size_t used, double time) { argument
26 used_in_period_ += used;
/external/valgrind/callgrind/
H A Dcosts.h48 Int used; member in struct:_CostChunk
54 * Typically used from ct_events.c */
/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(nullptr), 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/mesa3d/src/gallium/drivers/ilo/
H A Dilo_query.h53 int used; member in struct:ilo_query
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_rename_regs.c51 unsigned char * used; local
64 used = memory_pool_malloc(&c->Pool, sizeof(unsigned char) * used_length);
65 memset(used, 0, sizeof(unsigned char) * used_length);
67 rc_get_used_temporaries(c, used, used_length);
79 new_index = rc_find_free_temporary_list(c, used, used_length,
/external/mesa3d/src/gallium/drivers/vc4/
H A Dvc4_opt_dead_code.c29 * It walks all the instructions finding what temps are used, then walks again
88 bool *used = calloc(c->num_temps, sizeof(bool)); local
93 used[inst->src[i].index] = true;
101 !used[inst->dst.index])) {
150 free(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/strace/
H A Ddyxlat.c12 * 3. The name of the author may not be used to endorse or promote products
30 size_t used; member in struct:dyxlat
46 dyxlat->used = 1;
59 for (i = 0; i < dyxlat->used - 1; ++i) {
81 for (i = 0; i < dyxlat->used - 1; ++i) {
93 if (dyxlat->used >= dyxlat->allocated) {
99 dyxlat->xlat[dyxlat->used - 1].val = val;
100 dyxlat->xlat[dyxlat->used - 1].str = xstrndup(str, len);
101 MARK_END(dyxlat->xlat[dyxlat->used]);
102 dyxlat->used
[all...]
/external/syslinux/gpxe/src/net/
H A Dretry.c33 * used to build automatic retransmission into network protocols.
179 unsigned long used; local
182 used = ( now - timer->start );
183 if ( used >= timer->timeout )
/external/toybox/toys/pending/
H A Dklogd.c62 * "used" amount to track next read to start.
66 int prio, size, used = 0; local
83 start = msg_buffer + used; //start updated for re-read.
85 size = klogctl(2, start, sizeof(msg_buffer) - used - 1);
87 size = xread(TT.fd, start, sizeof(msg_buffer) - used - 1);
91 if (used) start = msg_buffer;
93 if ((line_start = strsep(&start, "\n")) != NULL && start != NULL) used = 0;
95 used = strlen(line_start);
97 if (used < (sizeof(msg_buffer) - 1)) break;
98 used
[all...]
/external/valgrind/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;
/external/vboot_reference/firmware/lib/
H A Dutility_string.c52 /* Don't count the terminating null in the bytes used */
58 uint32_t used = 0; local
64 while (dest[used] && used < destlen - 1)
65 used++;
68 while (*src && used < destlen - 1)
69 dest[used++] = *src++;
72 dest[used] = 0;
73 return used;
/external/boringssl/src/crypto/bio/
H A Dhexdump.c17 * If this package is used in a product, Eric Young should be given attribution
18 * as the author of the parts of the library used.
35 * being used are not cryptographic related :-).
69 unsigned used; /* number of bytes in the current line. */ member in struct:hexdump_ctx
100 if (ctx->used == 0) {
117 if (ctx->used == 7) {
121 } else if (ctx->used == 15) {
132 ctx->right_chars[ctx->used] = to_char(data[i]);
133 ctx->used++;
135 if (ctx->used
[all...]
/external/linux-kselftest/tools/testing/selftests/size/
H A Dget_size.c72 /* this program has no main(), as startup libraries are not used */
77 unsigned long used; local
89 used = info.totalram - info.freeram - info.bufferram;
90 print_k_value("ok 1 get runtime memory use # size = ", used,
97 print_k_value("# In use: ", used, info.mem_unit);
/external/mesa3d/src/compiler/glsl/
H A Dopt_dead_functions.cpp43 this->used = false;
47 bool used; member in class:__anon14656::signature_entry
94 entry->used = true;
108 entry->used = true;
121 /* Now that we've figured out which function signatures are used, remove
126 if (!entry->used) {
/external/r8/src/test/examples/shaking2/
H A DStaticFields.java7 public static int used = 42; field in class:StaticFields
10 // Not even used by <clinit>.
H A DUnusedSubclass.java7 private int used; field in class:UnusedSubclass
10 public UnusedSubclass(int used) { argument
11 this.used = 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/freetype/include/freetype/internal/
H A Dfthash.h83 FT_UInt used; member in struct:FT_HashRec_

Completed in 800 milliseconds

1234567891011