Searched refs:bf (Results 51 - 75 of 132) sorted by relevance

123456

/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dannotate.c35 static int ins__raw_scnprintf(struct ins *ins, char *bf, size_t size, argument
38 return scnprintf(bf, size, "%-6.6s %s", ins->name, ops->raw);
41 int ins__scnprintf(struct ins *ins, char *bf, size_t size, argument
45 return ins->ops->scnprintf(ins, bf, size, ops);
47 return ins__raw_scnprintf(ins, bf, size, ops);
87 static int call__scnprintf(struct ins *ins, char *bf, size_t size, argument
91 return scnprintf(bf, size, "%-6.6s %s", ins->name, ops->target.name);
94 return ins__raw_scnprintf(ins, bf, size, ops);
96 return scnprintf(bf, size, "%-6.6s *%" PRIx64, ins->name, ops->target.addr);
123 static int jump__scnprintf(struct ins *ins, char *bf, size_ argument
193 lock__scnprintf(struct ins *ins, char *bf, size_t size, struct ins_operands *ops) argument
264 mov__scnprintf(struct ins *ins, char *bf, size_t size, struct ins_operands *ops) argument
306 dec__scnprintf(struct ins *ins, char *bf, size_t size, struct ins_operands *ops) argument
318 nop__scnprintf(struct ins *ins __maybe_unused, char *bf, size_t size, struct ins_operands *ops __maybe_unused) argument
584 disasm_line__scnprintf(struct disasm_line *dl, char *bf, size_t size, bool raw) argument
913 char bf[BUILD_ID_SIZE * 2 + 16] = " with build id "; local
[all...]
H A Dannotate.h40 int (*scnprintf)(struct ins *ins, char *bf, size_t size,
51 int ins__scnprintf(struct ins *ins, char *bf, size_t size, struct ins_operands *ops);
71 int disasm_line__scnprintf(struct disasm_line *dl, char *bf, size_t size, bool raw);
H A Dsymbol-minimal.c28 static int read_build_id(void *note_data, size_t note_len, void *bf, argument
60 memcpy(bf, ptr, sz);
61 memset(bf + sz, 0, size - sz);
81 int filename__read_build_id(const char *filename, void *bf, size_t size) argument
151 ret = read_build_id(buf, buf_size, bf, size, need_swap);
200 ret = read_build_id(buf, buf_size, bf, size, need_swap);
H A Devent.c51 char bf[BUFSIZ]; local
65 if (fgets(bf, sizeof(bf), fp) == NULL) {
71 if (memcmp(bf, "Name:", 5) == 0) {
72 char *name = bf + 5;
81 } else if (memcmp(bf, "Tgid:", 5) == 0) {
82 char *tgids = bf + 5;
197 char bf[BUFSIZ]; local
204 if (fgets(bf, sizeof(bf), f
[all...]
H A Dsymbol-elf.c316 static int elf_read_build_id(Elf *elf, void *bf, size_t size) argument
382 memcpy(bf, ptr, sz);
383 memset(bf + sz, 0, size - sz);
395 int filename__read_build_id(const char *filename, void *bf, size_t size) argument
413 err = elf_read_build_id(elf, bf, size);
434 char bf[BUFSIZ]; local
445 if (read(fd, bf, namesz) != (ssize_t)namesz)
447 if (memcmp(bf, "GNU", sizeof("GNU")) == 0) {
454 } else if (read(fd, bf, descsz) != (ssize_t)descsz)
458 if (read(fd, bf,
[all...]
H A Dsort.h178 int (*se_snprintf)(struct hist_entry *self, char *bf, size_t size,
H A Dsymbol.h230 int filename__read_build_id(const char *filename, void *bf, size_t size);
231 int sysfs__read_build_id(const char *filename, void *bf, size_t size);
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/browsers/
H A Dhists.c34 static int hists__browser_title(struct hists *hists, char *bf, size_t size,
398 char *bf, size_t bfsize, bool show_dso)
403 printed = scnprintf(bf, bfsize, "%s", cl->ms.sym->name);
405 printed = scnprintf(bf, bfsize, "%#" PRIx64, cl->ip);
408 scnprintf(bf + printed, bfsize - printed, " %s",
411 return bf;
446 char bf[1024], *alloc_str; local
463 str = callchain_list__sym_name(chain, bf, sizeof(bf),
523 char bf[102 local
397 callchain_list__sym_name(struct callchain_list *cl, char *bf, size_t bfsize, bool show_dso) argument
1027 char bf[1024], *alloc_str; local
1078 char bf[1024], *s; local
1178 char bf[64]; local
1221 hists__browser_title(struct hists *hists, char *bf, size_t size, const char *ev_name) argument
1763 char bf[256], unit; local
[all...]
H A Dannotate.c104 char bf[256]; local
131 printed = scnprintf(bf, sizeof(bf), "%*s ",
133 slsmg_write_nstring(bf, printed);
143 printed = scnprintf(bf, sizeof(bf), "%" PRIx64 ": ", addr);
148 printed = scnprintf(bf, sizeof(bf), "%*d ",
153 slsmg_write_nstring(bf, printed);
157 printed = scnprintf(bf, sizeo
[all...]
/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))
H A Ds_tritemp.h138 GLfloat bf = SWRAST_CONTEXT(ctx)->_BackfaceSign; local
191 bf = -bf;
199 bf = -bf;
205 bf = -bf;
240 if (area * bf * swrast->_BackfaceCullSign < 0.0)
246 span.facing = oneOverArea * bf > 0.0F;
/external/linux-tools-perf/perf-3.12.0/tools/perf/ui/stdio/
H A Dhist.c353 char *bf, size_t bfsz, FILE *fp)
357 .buf = bf,
365 hist_entry__sort_snprintf(he, bf + ret, size - ret, hists);
367 ret = fprintf(fp, "%s\n", bf);
386 char bf[96]; local
388 .buf = bf,
389 .size = sizeof(bf),
410 fprintf(fp, "%s", bf);
351 hist_entry__fprintf(struct hist_entry *he, size_t size, struct hists *hists, char *bf, size_t bfsz, FILE *fp) argument
/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
127 BrainF bf; local
128 Module *mod = bf.parse(in, 65536, cf, Context); //64 KiB
/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))
H A Ds_tritemp.h138 GLfloat bf = SWRAST_CONTEXT(ctx)->_BackfaceSign; local
191 bf = -bf;
199 bf = -bf;
205 bf = -bf;
240 if (area * bf * swrast->_BackfaceCullSign < 0.0)
246 span.facing = oneOverArea * bf > 0.0F;
/external/openssl/apps/
H A Dprogs.pl75 "rc2", "bf", "cast", "rc5",
83 "bf-cbc", "bf-ecb", "bf-cfb", "bf-ofb",
97 elsif ($_ =~ /bf/) { $t="#ifndef OPENSSL_NO_BF\n${t}#endif\n"; }
/external/chromium_org/third_party/libvpx/source/libvpx/vpx_mem/memory_manager/include/
H A Dcavl_impl.h219 int bf; local
229 bf = AVL_GET_BALANCE_FACTOR(bal_h);
231 if (bf != 0) {
232 if (bf > 0) {
266 int bf; local
275 bf = AVL_GET_BALANCE_FACTOR(bal_h);
277 if (bf != 0) {
278 if (bf < 0) {
530 int bf; variable
676 bf
[all...]
/external/libvpx/libvpx/vpx_mem/memory_manager/include/
H A Dcavl_impl.h219 int bf; local
229 bf = AVL_GET_BALANCE_FACTOR(bal_h);
231 if (bf != 0) {
232 if (bf > 0) {
266 int bf; local
275 bf = AVL_GET_BALANCE_FACTOR(bal_h);
277 if (bf != 0) {
278 if (bf < 0) {
530 int bf; variable
676 bf
[all...]
/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/linux-tools-perf/perf-3.12.0/arch/sh/lib/
H A Dmemcpy-sh4.S207 bf/s 6f ! 108 BR (not small)
213 bf/s 4f ! 111 BR
228 bf/s 3b ! 111 BR
254 bf/s 1b ! 109 BR
268 bf/s 1f ! 111 BR
317 bf .Lcase00b ! 108 BR (big loop)
323 bf/s 4f ! 111 BR
338 bf/s 3b ! 109 BR
440 bf/s 3b ! 109 BR
492 bf/
[all...]
/external/chromium_org/tools/telemetry/telemetry/core/
H A Dbrowser_finder.py38 [bf.FindAllBrowserTypes(options) for bf in BROWSER_FINDERS])
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
H A Dpath.h61 void path_set_capabilities(struct path *p, VGbitfield bf);
/external/mesa3d/src/gallium/state_trackers/vega/
H A Dpath.h61 void path_set_capabilities(struct path *p, VGbitfield bf);
/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...]
/external/iproute2/doc/
H A Dip-tunnels.tex5 \Large\bf Tunnels over IP in Linux-2.2
106 \item {\bf In 2.0} you could compile tunnel device into kernel
112 {\bf 2.2} has {\em one\/} module \verb|ipip|. Loading it you get base
117 \item {\bf In 2.0} you set remote tunnel endpoint address with
120 {\bf In 2.2} this command has the same semantics on all
127 \item {\bf In 2.0} you create tunnel routes with the command:
132 {\bf 2.2} interprets this command equally for all device
189 Tunnels are divided to two classes: {\bf pointopoint} tunnels, which
191 to this destination, and {\bf NBMA} (i.e. Non-Broadcast Multi-Access) tunnels,
389 address. Such tunnel becomes {\bf broadcas
[all...]

Completed in 464 milliseconds

123456