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

1 2 3 4 5 6 7 8 91011>>

  /external/kmod/shared/
strbuf.h 11 unsigned used; member in struct:strbuf
  /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;
  /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;
  /frameworks/base/core/java/android/provider/
OneTimeUseBuilder.java 30 private boolean used = false; field in class:OneTimeUseBuilder
34 used = true;
38 if (used) {
47 * Once this method is called, this builder should no longer be used. Any subsequent calls to a
  /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/strace/
dyxlat.c 12 * 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)
97 dyxlat->xlat[dyxlat->used - 1].val = val;
98 dyxlat->xlat[dyxlat->used - 1].str = xstrndup(str, len);
99 MARK_END(dyxlat->xlat[dyxlat->used]);
100 dyxlat->used++
    [all...]
  /external/valgrind/callgrind/
costs.h 48 Int used; member in struct:_CostChunk
54 * Typically used from ct_events.c */
  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/file/
DiskUsage.java 16 * contributors may be used to endorse or promote products derived
56 long used = (store.getTotalSpace() - store.getUnallocatedSpace()) / K; local
64 System.out.format("%-20s %12d %12d %12d\n", s, total, used, avail);
68 System.out.format("%-20s %12s %12s %12s\n", "Filesystem", "kbytes", "used", "avail");
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/file/
DiskUsage.java 16 * contributors may be used to endorse or promote products derived
56 long used = (store.getTotalSpace() - store.getUnallocatedSpace()) / K; local
64 System.out.format("%-20s %12d %12d %12d\n", s, total, used, avail);
68 System.out.format("%-20s %12s %12s %12s\n", "Filesystem", "kbytes", "used", "avail");
  /external/adhd/cras/src/server/
buffer_share.h 12 unsigned int used; member in struct:id_offset
25 * Creates a buffer share object. This object is used to manage the read or
  /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 :-).
69 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/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/linux-kselftest/tools/testing/selftests/size/
get_size.c 72 /* this program has no main(), as startup libraries are not used */
77 unsigned long used; local
94 used = info.totalram - info.freeram - info.bufferram;
100 print_k_value(" In use: ", used, info.mem_unit);
  /external/mesa3d/src/gallium/drivers/ilo/
ilo_query.h 53 int used; member in struct:ilo_query
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_opt_dead_code.c 29 * 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/perfetto/src/ftrace_reader/test/
scattered_stream_delegate_for_testing.cc 31 size_t used = chunk_size_ - writer_->bytes_available(); local
32 chunks_used_size_.push_back(used);
  /external/syslinux/gpxe/src/net/
retry.c 33 * 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/
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;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/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; }
  /prebuilts/clang/host/darwin-x86/clang-4393122/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; }

Completed in 918 milliseconds

1 2 3 4 5 6 7 8 91011>>