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

12

/external/clang/test/Analysis/
H A Dstack-block-returned.cpp5 bptr bf(int j) { function
H A Dfields.c4 typedef struct bf { unsigned x:2; } bf; typedef in typeref:struct:bf
6 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;
H A Dmap.c673 char *machine__mmap_name(struct machine *self, char *bf, size_t size) argument
676 snprintf(bf, size, "[%s]", "kernel.kallsyms");
678 snprintf(bf, size, "[%s]", "guest.kernel.kallsyms");
680 snprintf(bf, size, "[%s.%d]", "guest.kernel.kallsyms", self->pid);
682 return bf;
H A Dheader.c121 static int write_padded(int fd, const void *bf, size_t count, argument
125 int err = do_write(fd, bf, count);
H A Dhist.c667 char bf[32]; local
678 snprintf(bf, sizeof(bf), "%+4.2F%%", diff);
680 snprintf(bf, sizeof(bf), " ");
683 ret += snprintf(s + ret, size - ret, "%c%s", *sep, bf);
685 ret += snprintf(s + ret, size - ret, "%11.11s", bf);
689 snprintf(bf, sizeof(bf), "%+4ld", displacement);
691 snprintf(bf, sizeo
716 char bf[512]; local
[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;
H A Dconst-init-cxx11.cpp210 extern constexpr void (B1::*bf)() = (void(B1::*)())&C::f; member in namespace:MemberPtr
/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/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);
H A Dhists.c351 char *bf, size_t bfsize)
356 snprintf(bf, bfsize, "%#" PRIx64, self->ip);
357 return bf;
784 static int hists__browser_title(struct hists *self, char *bf, size_t size, argument
793 printed = snprintf(bf, size, "Events: %lu%c %s", nr_events, unit, ev_name);
796 printed += snprintf(bf + printed, size - printed,
801 printed += snprintf(bf + printed, size - printed,
1015 char bf[256], unit; local
1021 snprintf(bf, sizeof(bf), "
350 callchain_list__sym_name(struct callchain_list *self, char *bf, size_t bfsize) argument
[all...]
/external/webkit/Source/WebKit/win/
H A DWebNodeHighlight.cpp159 BLENDFUNCTION bf; local
160 bf.BlendOp = AC_SRC_OVER;
161 bf.BlendFlags = 0;
162 bf.SourceConstantAlpha = 255;
163 bf.AlphaFormat = AC_SRC_ALPHA;
173 ::UpdateLayeredWindow(m_overlay, ::GetDC(0), &dstPoint, &size, hdc, &srcPoint, 0, &bf, ULW_ALPHA);
/external/libvpx/vpx_mem/memory_manager/include/
H A Dcavl_impl.h222 int bf; local
232 bf = AVL_GET_BALANCE_FACTOR(bal_h);
234 if (bf != 0)
236 if (bf > 0)
283 int bf; local
292 bf = AVL_GET_BALANCE_FACTOR(bal_h);
294 if (bf != 0)
296 if (bf < 0)
584 int bf; variable
752 bf
[all...]
/external/mesa3d/src/mesa/main/
H A Dimports.h344 double af, bf; local
346 bf = (3 << 22) + 0.5 - (double)f;
349 __asm__ ("fstps %0" : "=m" (bi) : "t" (bf) : "st");
357 double af, bf; local
361 bf = (3 << 22) + 0.5 - (double)f;
363 u.f = (float) bf; bi = u.i;
391 double af, bf; local
393 bf = (3 << 22) + 0.5 - (double)f;
396 __asm__ ("fstps %0" : "=m" (bi) : "t" (bf) : "st");
404 double af, bf; local
[all...]
/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);
/external/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/opencv/cvaux/src/
H A Dcveigenobjects.cpp480 float *bf = 0; local
567 bf = avg;
568 for( i = 0; i < avgSize.height; i++, bf += avgStep )
570 bf[j] = 0.f;
592 bf = avg;
593 for( k = 0; k < avgSize.height; k++, bf += avgStep, bu += objStep1 )
595 bf[l] += bu[l];
598 bf = avg;
599 for( i = 0; i < avgSize.height; i++, bf += avgStep )
601 bf[
[all...]
/external/opencv/cxcore/src/
H A Dcxmatrix.cpp1272 #define bf(y) ((float*)(bdata + y*src2step))[0] macro
1291 t = (float)((bf(0)*Sf(1,1) - bf(1)*Sf(0,1))*d);
1292 Df(1,0) = (float)((bf(1)*Sf(0,0) - bf(0)*Sf(1,0))*d);
1324 (bf(0)*(Sf(1,1)*Sf(2,2) - Sf(1,2)*Sf(2,1)) -
1325 Sf(0,1)*(bf(1)*Sf(2,2) - Sf(1,2)*bf(2)) +
1326 Sf(0,2)*(bf(1)*Sf(2,1) - Sf(1,1)*bf(
[all...]

Completed in 411 milliseconds

12