HomeSort by relevance Sort by last modified time
    Searched defs:used (Results 1 - 25 of 261) sorted by null

1 2 3 4 5 6 7 8 91011

  /external/clang/test/CodeGenCXX/
lambda-expressions.cpp 6 // CHECK: @used = internal global
7 auto used = [](int i) { return i+1; }; variable
8 void *use = &used;
  /ndk/tests/device/test-stlport_shared-exception/jni/
gcsec1.cpp 17 void used() function
39 used ();
  /ndk/tests/device/test-stlport_static-exception/jni/
gcsec1.cpp 17 void used() function
39 used ();
  /external/clang/test/SemaCXX/
warn-unused-attribute.cpp 14 Test used; local
16 used.use();
  /external/speex/libspeex/
vq_bfin.h 20 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++;
vq.c 17 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++;
vq_sse.h 19 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/vboot_reference/firmware/lib/
utility_string.c 52 /* 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;
region-kernel.c 189 uint32_t used = 0; local
193 used += StrnAppend(outbuf + used, "gbb.flags is nonzero: 0x",
194 OUTBUF_LEN - used);
195 used += Uint64ToString(outbuf + used, OUTBUF_LEN - used,
197 used += StrnAppend(outbuf + used, "\n", OUTBUF_LEN - used);
    [all...]
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_rename_regs.c 51 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/valgrind/callgrind/
costs.h 48 Int used; member in struct:_CostChunk
54 * Typically used from ct_events.c */
  /external/clang/include/clang/Sema/
Weak.h 10 // 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/regex-re2/util/
strutil.cc 20 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++] = '\"'; break
    [all...]
  /external/toybox/toys/pending/
klogd.c 62 * "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 = 0; //we have buffer full, log it as it is
    [all...]
  /external/valgrind/memcheck/tests/
mallinfo.c 15 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/boringssl/src/crypto/bio/
hexdump.c 17 * 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 :-).
67 unsigned used; /* number of bytes in the current line. */ member in struct:hexdump_ctx
99 if (ctx->used == 0) {
116 if (ctx->used == 7) {
120 } else if (ctx->used == 15) {
131 ctx->right_chars[ctx->used] = to_char(data[i]);
132 ctx->used++;
134 if (ctx->used == 16)
    [all...]
  /external/mesa3d/src/gallium/auxiliary/pipebuffer/
pb_validate.c 58 unsigned used; member in struct:pb_validate
80 if(vl->used && vl->entries[vl->used - 1].buf == buf) {
81 vl->entries[vl->used - 1].flags |= flags;
86 if(vl->used == vl->size) {
106 assert(!vl->entries[vl->used].buf);
107 pb_reference(&vl->entries[vl->used].buf, buf);
108 vl->entries[vl->used].flags = flags;
109 ++vl->used;
121 for(i = 0; i < vl->used; ++i)
    [all...]
  /external/mesa3d/src/gallium/winsys/i915/sw/
i915_sw_batchbuffer.c 106 unsigned used = 0; local
110 used = batch->base.ptr - batch->base.map;
111 assert((used & 3) == 0);
116 used += 4;
119 if ((used & 4) == 0) {
126 used = batch->base.ptr - batch->base.map;
127 assert((used & 4) == 0);
  /external/mesa3d/src/glsl/
opt_dead_functions.cpp 43 this->used = false;
47 bool used; member in class:__anon16833::signature_entry
95 entry->used = true;
109 entry->used = true;
122 /* Now that we've figured out which function signatures are used, remove
129 if (!entry->used) {
  /external/proguard/src/proguard/shrink/
InterfaceUsageMarker.java 32 * 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. Mark the ClassConstant as being use
    [all...]
  /external/toybox/toys/posix/
df.c 15 The "disk free" command shows total/used/available disk space for
39 long long size, used, avail, percent, block; local
58 // Figure out how much total/used/free space this filesystem has,
62 used = (block * (mt->statvfs.f_blocks-mt->statvfs.f_bfree)) / TT.units;
64 if (!(used+avail)) percent = 0;
66 percent = (used*100)/(used+avail);
67 if (used*100 != percent*(used+avail)) percent++;
77 size, used, avail, (toys.optflags & FLAG_P) ? 7 : 3, percent, mt->dir)
    [all...]
  /bionic/libc/kernel/uapi/linux/
virtio_ring.h 61 struct vring_used * used; member in struct:vring
65 #define vring_avail_event(vr) (* (__u16 *) & (vr)->used->ring[(vr)->num])
  /development/ndk/platforms/android-21/include/linux/
virtio_ring.h 61 struct vring_used *used; member in struct:vring
65 #define vring_avail_event(vr) (*(__u16 *)&(vr)->used->ring[(vr)->num])
  /external/bison/lib/
wait-process.c 55 The 'used' bit determines whether this entry is currently in use.
58 the 'used' field.)
59 The 'used' and 'child' fields are accessed from within the cleanup_slaves()
63 volatile sig_atomic_t used; member in struct:__anon4717
95 if (slaves[n].used)
126 if (!s->used)
130 entry as used only after the child pid has been written to the
133 s->used = 1;
166 new slave and its 'used' bit have been written to the memory locations
169 slaves[slaves_count].used = 1
    [all...]
  /external/boringssl/src/crypto/rand/
urandom.c 49 * vfork and clone being used in order to invalidate the getpid() cache.
53 * If the second process never used any random values then this will mean
64 size_t used; /* used contains the number of bytes of |rand| that have member in struct:rand_buffer
177 rand_bytes_per_buf - buf->used >= requested) {
178 memcpy(out, &buf->rand[buf->used], requested);
179 buf->used += requested;
199 * so we mark it as fully used so that it will be
201 buf->used = rand_bytes_per_buf;
212 * may have been used in another process. *
    [all...]

Completed in 296 milliseconds

1 2 3 4 5 6 7 8 91011