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

1 2 3 4

  /external/clang/test/Analysis/
stack-block-returned.cpp 5 bptr bf(int j) { function
fields.c 4 typedef struct bf { unsigned x:2; } bf; typedef in typeref:struct:bf
6 bf y;
  /external/linux-tools-perf/util/
build-id.h 8 char *dso__build_id_filename(struct dso *self, char *bf, size_t size);
sort.c 18 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, ...)
113 n = vsnprintf(bf, size, fmt, ap);
115 char *sep = bf;
128 static int hist_entry__thread_snprintf(struct hist_entry *self, char *bf,
    [all...]
build-id.c 70 char *dso__build_id_filename(struct dso *self, char *bf, size_t size)
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;
top.c 70 size_t perf_top__header_snprintf(struct perf_top *top, char *bf, size_t size)
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 + ret, size - ret, " (target_tid: %d"
    [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 169 static int __color_vsnprintf(char *bf, size_t size, const char *color,
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,
222 return __color_vsnprintf(bf, size, color, fmt, args, NULL);
230 int color_snprintf(char *bf, size_t size, const char *color,
237 r = color_vsnprintf(bf, size, color, fmt, args);
320 int percent_color_snprintf(char *bf, size_t size, const char *fmt, double percent
    [all...]
  /dalvik/tests/030-bad-finalizer/src/
Main.java 8 BadFinalizer bf = new BadFinalizer(); local
11 bf = null;
  /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/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/
ptr-to-member-function.cpp 21 void bf() { printf("B::bf called\n"); } function in struct:B
34 return &B::bf;
  /external/jmonkeyengine/engine/src/test/jme3test/light/
TestEnvironmentMapping.java 53 BloomFilter bf = new BloomFilter(BloomFilter.GlowMode.Objects); local
54 bf.setBloomIntensity(2.3f);
55 bf.setExposurePower(0.6f);
57 fpp.addFilter(bf);
  /external/jmonkeyengine/engine/src/test/jme3test/model/
TestHoverTank.java 89 BloomFilter bf = new BloomFilter(BloomFilter.GlowMode.Objects); local
90 bf.setBloomIntensity(2.0f);
91 bf.setExposurePower(1.3f);
92 fpp.addFilter(bf);
93 BloomUI bui = new BloomUI(inputManager, bf);
  /ndk/sources/host-tools/make-3.81/
strcache.c 192 int bf = sp->bytesfree; local
193 int sz = (sp->end - sp->buffer) + bf;
202 totfree += bf;
203 maxfree = (bf > maxfree ? bf : maxfree);
204 minfree = (bf < minfree ? bf : minfree);
  /frameworks/base/media/java/android/media/
ResampleInputStream.java 92 byte[] bf = new byte[nIn];
93 System.arraycopy(mBuf, 0, bf, 0, mBufCount);
94 mBuf = bf;
  /external/openssl/crypto/evp/
e_bf.c 77 IMPLEMENT_BLOCK_CIPHER(bf, ks, BF, EVP_BF_KEY, NID_bf, 8, 16, 8, 64,
  /external/guava/guava/src/com/google/common/hash/
BloomFilter.java 222 SerialForm(BloomFilter<T> bf) {
223 this.data = bf.bits.data;
224 this.numHashFunctions = bf.numHashFunctions;
225 this.funnel = bf.funnel;
226 this.strategy = bf.strategy;
  /external/mesa3d/src/mesa/main/
imports.h 344 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...]
  /frameworks/base/services/java/com/android/server/am/
ReceiverList.java 84 BroadcastFilter bf = get(i); local
87 pw.print(Integer.toHexString(System.identityHashCode(bf)));
89 bf.dumpInReceiverList(pw, pr, p2);
  /external/webkit/Source/JavaScriptCore/wtf/
AVLTree.h 484 void set_bf(handle h, int bf) { abs.set_balance_factor(h, bf); }
517 int bf = get_bf(bal_h);
518 if (bf != 0) {
519 if (bf > 0) {
556 int bf = get_bf(bal_h);
557 if (bf != 0) {
558 if (bf < 0) {
882 int bf;
886 bf = get_bf(h)
    [all...]
  /external/libffi/src/powerpc/
sysv.S 77 bf- 5,1f
87 bf- 6,2f
108 bf+ 28,L(done_return_value)
111 bf 27,L(done_return_value)
128 bf 28,L(float_return_value)
131 bf 27,L(done_return_value)
  /external/webkit/Source/WebKit/win/
WebNodeHighlight.cpp 159 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);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
cursesw.h 133 inline int UNDEF(clearok)(WINDOW* win, bool bf) { return clearok(win, bf); }
316 inline int UNDEF(leaveok)(WINDOW* win, bool bf) { return leaveok(win, bf); }
320 extern "C" NCURSES_IMPEXP int NCURSES_API leaveok(WINDOW* win, bool bf);
354 inline int UNDEF(scrollok)(WINDOW* win, bool bf) { return scrollok(win, bf); }
1074 int clearok(bool bf) { return ::clearok(w, bf); }
    [all...]

Completed in 705 milliseconds

1 2 3 4