HomeSort by relevance Sort by last modified time
    Searched refs:bf (Results 1 - 25 of 120) sorted by null

1 2 3 4 5

  /external/libcxx/test/utilities/function.objects/func.require/
binary_function.pass.cpp 19 typedef std::binary_function<int, short, bool> bf; typedef
20 static_assert((std::is_same<bf::first_argument_type, int>::value), "");
21 static_assert((std::is_same<bf::second_argument_type, short>::value), "");
22 static_assert((std::is_same<bf::result_type, bool>::value), "");
  /external/clang/test/Analysis/
stack-block-returned.cpp 5 bptr bf(int j) { function
fields.c 6 typedef struct bf { unsigned x:2; } bf; typedef in typeref:struct:bf
8 bf y;
  /external/clang/test/Sema/
warn-bad-function-cast.c 12 _Bool bf(void);
23 (const void)bf();
32 (_Bool)bf();
43 (int)bf(); /* expected-warning {{cast from function call of type '_Bool' to non-matching type 'int'}} */
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
build-id.h 12 int build_id__sprintf(const u8 *build_id, int len, char *bf);
13 char *dso__build_id_filename(struct dso *self, char *bf, size_t size);
top.c 24 size_t perf_top__header_snprintf(struct perf_top *top, char *bf, size_t size)
47 ret = SNPRINTF(bf, size,
56 ret = SNPRINTF(bf, size,
75 ret += SNPRINTF(bf + ret, size - ret, "%" PRIu64 "%s ",
80 ret += SNPRINTF(bf + ret, size - ret, "%s", perf_evsel__name(top->sym_evsel));
82 ret += SNPRINTF(bf + ret, size - ret, "], ");
85 ret += SNPRINTF(bf + ret, size - ret, " (target_pid: %s",
88 ret += SNPRINTF(bf + ret, size - ret, " (target_tid: %s",
91 ret += SNPRINTF(bf + ret, size - ret, " (uid: %s",
94 ret += SNPRINTF(bf + ret, size - ret, " (all")
    [all...]
build-id.c 77 int build_id__sprintf(const u8 *build_id, int len, char *bf)
79 char *bid = bf;
92 char *dso__build_id_filename(struct dso *self, char *bf, size_t size)
100 if (bf == NULL) {
101 if (asprintf(&bf, "%s/.build-id/%.2s/%s", buildid_dir,
105 snprintf(bf, size, "%s/.build-id/%.2s/%s", buildid_dir,
107 return bf;
sort.c 21 static int repsep_snprintf(char *bf, size_t size, const char *fmt, ...)
27 n = vsnprintf(bf, size, fmt, ap);
29 char *sep = bf;
63 static int hist_entry__thread_snprintf(struct hist_entry *self, char *bf,
66 return repsep_snprintf(bf, size, "%*s:%5d", width - 6,
97 static int hist_entry__comm_snprintf(struct hist_entry *self, char *bf,
100 return repsep_snprintf(bf, size, "%*s", width, self->thread->comm);
139 static int _hist_entry__dso_snprintf(struct map *map, char *bf,
145 return repsep_snprintf(bf, size, "%-*s", width, dso_name);
148 return repsep_snprintf(bf, size, "%-*s", width, "[unknown]")
    [all...]
color.h 35 int color_vsnprintf(char *bf, size_t size, const char *color,
39 int color_snprintf(char *bf, size_t size, const char *color, const char *fmt, ...);
42 int percent_color_snprintf(char *bf, size_t size, const char *fmt, double percent);
color.c 170 static int __color_vsnprintf(char *bf, size_t size, const char *color,
186 r += scnprintf(bf, size, "%s", color);
187 r += vscnprintf(bf + r, size - r, fmt, args);
189 r += scnprintf(bf + r, size - r, "%s", PERF_COLOR_RESET);
191 r += scnprintf(bf + r, size - r, "%s", trail);
220 int color_vsnprintf(char *bf, size_t size, const char *color,
223 return __color_vsnprintf(bf, size, color, fmt, args, NULL);
231 int color_snprintf(char *bf, size_t size, const char *color,
238 r = color_vsnprintf(bf, size, color, fmt, args);
321 int percent_color_snprintf(char *bf, size_t size, const char *fmt, double percent
    [all...]
  /external/guava/guava-tests/test/com/google/common/hash/
BloomFilterTest.java 61 private void checkSanity(BloomFilter<Object> bf) {
62 assertFalse(bf.mightContain(new Object()));
65 bf.put(o);
66 assertTrue(bf.mightContain(o));
71 BloomFilter<byte[]> bf = BloomFilter.create(Funnels.byteArrayFunnel(), 100); local
73 bf.put(Ints.toByteArray(i));
76 bf = SerializableTester.reserialize(bf);
78 assertTrue(bf.mightContain(Ints.toByteArray(i)));
  /external/fio/engines/
binject.c 65 struct binject_file *bf; local
72 bf = (struct binject_file *) (uintptr_t) f->engine_data;
73 ret = read(bf->fd, p, left * sizeof(struct b_user_cmd));
101 struct binject_file *bf; local
107 bf = (struct binject_file *) (uintptr_t) f->engine_data;
113 bd->fd_flags[i] = fio_set_fd_nonblocking(bf->fd, "binject");
117 bd->pfds[i].fd = bf->fd;
157 bf = (struct binject_file *) (uintptr_t) f->engine_data;
162 if (fcntl(bf->fd, F_SETFL, bd->fd_flags[i]) < 0)
176 struct binject_file *bf = (struct binject_file *) (uintptr_t) io_u->file->engine_data local
190 struct binject_file *bf = (struct binject_file *) (uintptr_t) io_u->file->engine_data; local
332 struct binject_file *bf = (struct binject_file *) (uintptr_t) f->engine_data; local
346 struct binject_file *bf; local
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
SendToClient.java 95 StringBuffer bf = new StringBuffer(); local
96 bf.append("[Wrong value]");
97 bf.append("; i = " + i);
98 bf.append("; InValue = " + in);
99 bf.append("; exceptValue = " + temp);
100 return bf.toString();
  /external/clang/test/SemaCXX/
microsoft-new-delete.cpp 18 struct bitfield { int n : 3; } bf; // expected-note {{here}} variable in typeref:struct:bitfield
21 void *r = new (bf.n) int[4]; // expected-error {{non-const reference cannot bind to bit-field}}
  /external/openssl/crypto/ui/
ui_compat.h 74 #define des_read_pw(b,bf,s,p,v) \
75 _ossl_old_des_read_pw((b),(bf),(s),(p),(v))
  /external/openssl/include/openssl/
ui_compat.h 74 #define des_read_pw(b,bf,s,p,v) \
75 _ossl_old_des_read_pw((b),(bf),(s),(p),(v))
  /external/clang/test/CodeGenCXX/
debug-info-alias.cpp 19 // CHECK: metadata [[BFLOAT:![0-9]*]], i32 0, i32 1, {{.*}} ; [ DW_TAG_variable ] [bf]
21 x::bar<float> bf; variable
ptr-to-member-function.cpp 20 void bf() { printf("B::bf called\n"); } function in struct:B
33 return &B::bf;
  /art/test/030-bad-finalizer/src/
Main.java 22 BadFinalizer bf = new BadFinalizer(); local
25 bf = null;
  /external/llvm/test/MC/MachO/ARM/
llvm-objdump-macho-stripped.s 3 # CHECK: 0: 00 bf nop
  /external/linux-tools-perf/perf-3.12.0/arch/sh/lib/
memset.S 29 bf/s 1b
44 bf/s 3b
54 bf/s 4b
memset-sh4.S 27 bf/s 1b
56 bf/s 10b
77 bf/s 12b
83 bf 40f
92 bf/s 3b
103 bf/s 4b
  /external/linux-tools-perf/perf-3.12.0/arch/powerpc/lib/
memcpy_64.S 47 bf cr7*4+0,2f
61 bf cr7*4+1,1f
66 1: bf cr7*4+2,2f
71 2: bf cr7*4+3,3f
146 bf cr7*4+1,1f
150 1: bf cr7*4+2,2f
154 2: bf cr7*4+3,3f
165 bf cr7*4+3,1f
169 1: bf cr7*4+2,2f
173 2: bf cr7*4+1,3
    [all...]
memcpy_power7.S 45 bf cr7*4+3,1f
51 1: bf cr7*4+2,2f
57 2: bf cr7*4+1,3f
139 6: bf cr7*4+1,7f
160 7: bf cr7*4+2,8f
173 8: bf cr7*4+3,9f
186 bf cr7*4+0,12f
194 12: bf cr7*4+1,13f
200 13: bf cr7*4+2,14f
206 14: bf cr7*4+3,15
    [all...]
  /external/openssl/crypto/evp/
e_bf.c 77 IMPLEMENT_BLOCK_CIPHER(bf, ks, BF, EVP_BF_KEY, NID_bf, 8, 16, 8, 64,

Completed in 1841 milliseconds

1 2 3 4 5