Searched defs:bf (Results 1 - 25 of 57) sorted by relevance

123

/external/clang/test/Analysis/
H A Dstack-block-returned.cpp5 bptr bf(int j) { function
H A Dfields.c6 typedef struct bf { unsigned x:2; } bf; typedef in typeref:struct:bf
8 bf y;
/external/guava/guava-tests/test/com/google/common/hash/
H A DBloomFilterTest.java61 private void checkSanity(BloomFilter<Object> bf) { argument
62 assertFalse(bf.mightContain(new Object()));
65 bf.put(o);
66 assertTrue(bf.mightContain(o));
71 BloomFilter<byte[]> bf = BloomFilter.create(Funnels.byteArrayFunnel(), 100);
73 bf.put(Ints.toByteArray(i));
76 bf = SerializableTester.reserialize(bf);
78 assertTrue(bf.mightContain(Ints.toByteArray(i)));
/external/linux-tools-perf/util/
H A Dbuild-id.c70 char *dso__build_id_filename(struct dso *self, char *bf, size_t size) argument
78 if (bf == NULL) {
79 if (asprintf(&bf, "%s/.build-id/%.2s/%s", buildid_dir,
83 snprintf(bf, size, "%s/.build-id/%.2s/%s", buildid_dir,
85 return bf;
H A Dtop.c70 size_t perf_top__header_snprintf(struct perf_top *top, char *bf, size_t size) argument
79 ret = SNPRINTF(bf, size,
90 ret = SNPRINTF(bf, size,
110 ret += SNPRINTF(bf + ret, size - ret, "%" PRIu64 "%s ",
116 ret += SNPRINTF(bf + ret, size - ret, "%s",
126 ret += SNPRINTF(bf + ret, size - ret, "%s%s",
130 sprintf(bf + last_pos - 3, "..");
137 ret += SNPRINTF(bf + ret, size - ret, "], ");
140 ret += SNPRINTF(bf + ret, size - ret, " (target_pid: %d",
143 ret += SNPRINTF(bf
[all...]
H A Dcolor.c169 static int __color_vsnprintf(char *bf, size_t size, const char *color, argument
185 r += snprintf(bf, size, "%s", color);
186 r += vsnprintf(bf + r, size - r, fmt, args);
188 r += snprintf(bf + r, size - r, "%s", PERF_COLOR_RESET);
190 r += snprintf(bf + r, size - r, "%s", trail);
219 int color_vsnprintf(char *bf, size_t size, const char *color, argument
222 return __color_vsnprintf(bf, size, color, fmt, args, NULL);
230 int color_snprintf(char *bf, size_t size, const char *color, argument
237 r = color_vsnprintf(bf, size, color, fmt, args);
320 int percent_color_snprintf(char *bf, size_ argument
[all...]
H A Devent.c60 char bf[BUFSIZ]; local
82 if (fgets(bf, sizeof(bf), fp) == NULL) {
87 if (memcmp(bf, "Name:", 5) == 0) {
88 char *name = bf + 5;
93 } else if (memcmp(bf, "Tgid:", 5) == 0) {
94 char *tgids = bf + 5;
170 char bf[BUFSIZ], *pbf = bf; local
173 if (fgets(bf, sizeo
[all...]
H A Dsort.c18 static int hist_entry__thread_snprintf(struct hist_entry *self, char *bf,
20 static int hist_entry__comm_snprintf(struct hist_entry *self, char *bf,
22 static int hist_entry__dso_snprintf(struct hist_entry *self, char *bf,
24 static int hist_entry__sym_snprintf(struct hist_entry *self, char *bf,
26 static int hist_entry__parent_snprintf(struct hist_entry *self, char *bf,
28 static int hist_entry__cpu_snprintf(struct hist_entry *self, char *bf,
107 static int repsep_snprintf(char *bf, size_t size, const char *fmt, ...) argument
113 n = vsnprintf(bf, size, fmt, ap);
115 char *sep = bf;
128 static int hist_entry__thread_snprintf(struct hist_entry *self, char *bf, argument
135 hist_entry__comm_snprintf(struct hist_entry *self, char *bf, size_t size, unsigned int width) argument
164 hist_entry__dso_snprintf(struct hist_entry *self, char *bf, size_t size, unsigned int width) argument
192 hist_entry__sym_snprintf(struct hist_entry *self, char *bf, size_t size, unsigned int width __used) argument
248 hist_entry__parent_snprintf(struct hist_entry *self, char *bf, size_t size, unsigned int width) argument
263 hist_entry__cpu_snprintf(struct hist_entry *self, char *bf, size_t size, unsigned int width) argument
[all...]
H A Dannotate.c305 char bf[BUILD_ID_SIZE * 2 + 16] = " with build id "; local
313 sizeof(dso->build_id), bf + 15);
314 build_id_msg = bf;
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dbitfield.c23 struct bitfield *bf; local
25 bf = os_zalloc(sizeof(*bf) + (max_bits + 7) / 8);
26 if (bf == NULL)
28 bf->bits = (u8 *) (bf + 1);
29 bf->max_bits = max_bits;
30 return bf;
34 void bitfield_free(struct bitfield *bf) argument
36 os_free(bf);
40 bitfield_set(struct bitfield *bf, size_t bit) argument
48 bitfield_clear(struct bitfield *bf, size_t bit) argument
56 bitfield_is_set(struct bitfield *bf, size_t bit) argument
76 bitfield_get_first_zero(struct bitfield *bf) argument
[all...]
/external/wpa_supplicant_8/src/utils/
H A Dbitfield.c23 struct bitfield *bf; local
25 bf = os_zalloc(sizeof(*bf) + (max_bits + 7) / 8);
26 if (bf == NULL)
28 bf->bits = (u8 *) (bf + 1);
29 bf->max_bits = max_bits;
30 return bf;
34 void bitfield_free(struct bitfield *bf) argument
36 os_free(bf);
40 bitfield_set(struct bitfield *bf, size_t bit) argument
48 bitfield_clear(struct bitfield *bf, size_t bit) argument
56 bitfield_is_set(struct bitfield *bf, size_t bit) argument
76 bitfield_get_first_zero(struct bitfield *bf) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dbitfield.c23 struct bitfield *bf; local
25 bf = os_zalloc(sizeof(*bf) + (max_bits + 7) / 8);
26 if (bf == NULL)
28 bf->bits = (u8 *) (bf + 1);
29 bf->max_bits = max_bits;
30 return bf;
34 void bitfield_free(struct bitfield *bf) argument
36 os_free(bf);
40 bitfield_set(struct bitfield *bf, size_t bit) argument
48 bitfield_clear(struct bitfield *bf, size_t bit) argument
56 bitfield_is_set(struct bitfield *bf, size_t bit) argument
76 bitfield_get_first_zero(struct bitfield *bf) argument
[all...]
/external/clang/test/CodeGenCXX/
H A Dptr-to-member-function.cpp21 void bf() { printf("B::bf called\n"); } function in struct:B
34 return &B::bf;
/external/llvm/examples/BrainF/
H A DBrainFDriver.cpp19 // ./BrainF -jit prog.bf #Run program now
20 // ./BrainF -jit -abc prog.bf #Run program now safely
21 // ./BrainF prog.bf #Write as BitCode
23 // lli prog.bf.bc #Run generated BitCode
126 BrainF bf; local
127 Module *mod = bf.parse(in, 65536, cf, Context); //64 KiB
/external/guava/guava/src/com/google/common/hash/
H A DBloomFilter.java222 SerialForm(BloomFilter<T> bf) { argument
223 this.data = bf.bits.data;
224 this.numHashFunctions = bf.numHashFunctions;
225 this.funnel = bf.funnel;
226 this.strategy = bf.strategy;
/external/iputils/
H A Dtftpsubs.c61 struct bf { struct
66 /* Values for bf.counter */
102 struct bf *b;
126 struct bf *b;
191 struct bf *b;
/external/linux-tools-perf/util/ui/browsers/
H A Dmap.c14 static int ui_entry__read(const char *title, char *bf, size_t size, int width) argument
38 strncpy(bf, result, size);
/external/chromium_org/content/browser/indexed_db/leveldb/
H A Dleveldb_transaction.h65 void SetBalanceFactor(handle h, int bf) { h->balance_factor = bf; } argument
/external/chromium_org/third_party/mesa/src/src/mesa/swrast/
H A Ds_aatritemp.h61 GLfloat bf = SWRAST_CONTEXT(ctx)->_BackfaceCullSign; variable
81 vMin = v0; vMid = v2; vMax = v1; bf = -bf; /* y0<=y2<=y1 */
86 vMin = v1; vMid = v0; vMax = v2; bf = -bf; /* y1<=y0<=y2 */
89 vMin = v2; vMid = v1; vMax = v0; bf = -bf; /* y2<=y1<=y0 */
106 if (area * bf < 0 || area == 0 || IS_INF_OR_NAN(area))
/external/libvpx/libvpx/vpx_mem/memory_manager/include/
H A Dcavl_impl.h217 int bf; local
227 bf = AVL_GET_BALANCE_FACTOR(bal_h);
229 if (bf != 0) {
230 if (bf > 0) {
264 int bf; local
273 bf = AVL_GET_BALANCE_FACTOR(bal_h);
275 if (bf != 0) {
276 if (bf < 0) {
528 int bf; variable
674 bf
[all...]
/external/mesa3d/src/mesa/swrast/
H A Ds_aatritemp.h61 GLfloat bf = SWRAST_CONTEXT(ctx)->_BackfaceCullSign; variable
81 vMin = v0; vMid = v2; vMax = v1; bf = -bf; /* y0<=y2<=y1 */
86 vMin = v1; vMid = v0; vMax = v2; bf = -bf; /* y1<=y0<=y2 */
89 vMin = v2; vMid = v1; vMax = v0; bf = -bf; /* y2<=y1<=y0 */
106 if (area * bf < 0 || area == 0 || IS_INF_OR_NAN(area))
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_math.h288 double af, bf; local
291 bf = (3 << 22) + 0.5 - (double) f;
293 u.f = (float) bf; bi = u.i;
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dimports.h357 double af, bf; local
359 bf = (3 << 22) + 0.5 - (double)f;
362 __asm__ ("fstps %0" : "=m" (bi) : "t" (bf) : "st");
370 double af, bf; local
374 bf = (3 << 22) + 0.5 - (double)f;
376 u.f = (float) bf; bi = u.i;
404 double af, bf; local
406 bf = (3 << 22) + 0.5 - (double)f;
409 __asm__ ("fstps %0" : "=m" (bi) : "t" (bf) : "st");
417 double af, bf; local
[all...]
/external/chromium_org/third_party/openssl/openssl/crypto/asn1/
H A Dasn_mime.c538 BIO *bf; local
546 bf = BIO_new(BIO_f_buffer());
547 if (!bf)
549 out = BIO_push(bf, out);
569 BIO_free(bf);
/external/linux-tools-perf/
H A Dbuiltin-top.c279 char bf[160]; local
290 perf_top__header_snprintf(&top, bf, sizeof(bf));
291 printf("%s\n", bf);

Completed in 513 milliseconds

123