/external/guava/guava/src/com/google/common/hash/ |
D | BloomFilter.java | 339 Funnel<? super T> funnel, long expectedInsertions, double fpp) { in toBloomFilter() argument 343 checkArgument(fpp > 0.0, "False positive probability (%s) must be > 0.0", fpp); in toBloomFilter() 344 checkArgument(fpp < 1.0, "False positive probability (%s) must be < 1.0", fpp); in toBloomFilter() 346 () -> BloomFilter.create(funnel, expectedInsertions, fpp), in toBloomFilter() 377 Funnel<? super T> funnel, int expectedInsertions, double fpp) { in create() argument 378 return create(funnel, (long) expectedInsertions, fpp); in create() 403 Funnel<? super T> funnel, long expectedInsertions, double fpp) { in create() argument 404 return create(funnel, expectedInsertions, fpp, BloomFilterStrategies.MURMUR128_MITZ_64); in create() 409 Funnel<? super T> funnel, long expectedInsertions, double fpp, Strategy strategy) { in create() argument 413 checkArgument(fpp > 0.0, "False positive probability (%s) must be > 0.0", fpp); in create() [all …]
|
/external/guava/android/guava/src/com/google/common/hash/ |
D | BloomFilter.java | 310 Funnel<? super T> funnel, int expectedInsertions, double fpp) { in create() argument 311 return create(funnel, (long) expectedInsertions, fpp); in create() 336 Funnel<? super T> funnel, long expectedInsertions, double fpp) { in create() argument 337 return create(funnel, expectedInsertions, fpp, BloomFilterStrategies.MURMUR128_MITZ_64); in create() 342 Funnel<? super T> funnel, long expectedInsertions, double fpp, Strategy strategy) { in create() argument 346 checkArgument(fpp > 0.0, "False positive probability (%s) must be > 0.0", fpp); in create() 347 checkArgument(fpp < 1.0, "False positive probability (%s) must be < 1.0", fpp); in create() 358 long numBits = optimalNumOfBits(expectedInsertions, fpp); in create()
|
/external/guava/android/guava-tests/test/com/google/common/hash/ |
D | BloomFilterTest.java | 279 for (double fpp = Double.MIN_VALUE; fpp < 1.0; fpp += 0.001) { in testOptimalSize() 280 assertTrue(BloomFilter.optimalNumOfBits(n, fpp) >= 0); in testOptimalSize() 331 double fpp = bf.expectedFpp(); in testExpectedFpp() local 332 assertEquals(0.0, fpp); in testExpectedFpp() 334 while (fpp != 1.0) { in testExpectedFpp() 338 assertTrue(changed ? newFpp > fpp : newFpp == fpp); in testExpectedFpp() 339 fpp = newFpp; in testExpectedFpp() 345 double fpp = 0.03; in testBitSize() local 347 long numBits = BloomFilter.optimalNumOfBits(i, fpp); in testBitSize() 351 BloomFilter.create(Funnels.unencodedCharsFunnel(), i, fpp).bitSize()); in testBitSize()
|
/external/guava/guava-tests/test/com/google/common/hash/ |
D | BloomFilterTest.java | 280 for (double fpp = Double.MIN_VALUE; fpp < 1.0; fpp += 0.001) { in testOptimalSize() 281 assertTrue(BloomFilter.optimalNumOfBits(n, fpp) >= 0); in testOptimalSize() 332 double fpp = bf.expectedFpp(); in testExpectedFpp() local 333 assertEquals(0.0, fpp); in testExpectedFpp() 335 while (fpp != 1.0) { in testExpectedFpp() 339 assertTrue(changed ? newFpp > fpp : newFpp == fpp); in testExpectedFpp() 340 fpp = newFpp; in testExpectedFpp() 346 double fpp = 0.03; in testBitSize() local 348 long numBits = BloomFilter.optimalNumOfBits(i, fpp); in testBitSize() 352 BloomFilter.create(Funnels.unencodedCharsFunnel(), i, fpp).bitSize()); in testBitSize()
|
/external/skqp/src/core/ |
D | SkCubicMap.cpp | 66 float fpp = eval_poly1(A3 + A3, B2, t); // f'' = 6At + 2B in solve_nice_cubic_halley() local 72 float denom = 2 * fp * fp - f * fpp; in solve_nice_cubic_halley() 104 float fpp = eval_poly1(A3 + A3, B2, t); // f'' = 6At + 2B in solve_nice_cubic_householder() local 113 float numer = 6 * f * fp2 - 3 * f2 * fpp; in solve_nice_cubic_householder() 117 float denom = 6 * (fp2 * fp - f * fp * fpp) + f2 * fppp; in solve_nice_cubic_householder()
|
/external/skia/src/core/ |
D | SkCubicSolver.h | 52 float fpp = eval_poly(t, 3*A+3*A, 2*B); // f'' = 6At + 2B in cubic_solver() local 55 float denom = sk_fmaf(2*fp, fp, -(f*fpp)); in cubic_solver()
|
/external/rust/crates/quiche/deps/boringssl/src/crypto/bio/ |
D | file.c | 182 FILE **fpp; in file_ctrl() local 239 fpp = (FILE **)ptr; in file_ctrl() 240 *fpp = (FILE *)b->ptr; in file_ctrl()
|
/external/boringssl/src/crypto/bio/ |
D | file.c | 182 FILE **fpp; in file_ctrl() local 239 fpp = (FILE **)ptr; in file_ctrl() 240 *fpp = (FILE *)b->ptr; in file_ctrl()
|
/external/libchrome/base/debug/ |
D | stack_trace.cc | 138 void* LinkStackFrames(void* fpp, void* parent_fp) { in LinkStackFrames() argument 139 uintptr_t fp = reinterpret_cast<uintptr_t>(fpp) - kStackFrameAdjustment; in LinkStackFrames()
|
/external/llvm-project/clang/test/CXX/except/except.spec/ |
D | p2-places-1z.cpp | 9 void (**fpp)() noexcept; variable
|
/external/clang/test/SemaCXX/ |
D | const-cast.cpp | 40 f *fpp = const_cast<f*>(&fp); in good_const_cast_test() local
|
D | cstyle-cast.cpp | 39 f *fpp = (f*)(&fp); in t_cc() local
|
D | functional-cast.cpp | 71 f *fpp = fp_t(&fp); in t_cc() local
|
/external/llvm-project/clang/test/SemaCXX/ |
D | const-cast.cpp | 40 f *fpp = const_cast<f*>(&fp); in good_const_cast_test() local
|
D | cstyle-cast.cpp | 39 f *fpp = (f*)(&fp); in t_cc() local
|
D | functional-cast.cpp | 71 f *fpp = fp_t(&fp); in t_cc() local
|
/external/python/cpython2/Modules/_ctypes/libffi/src/mips/ |
D | ffi.c | 877 char *fpp; in copy_struct_N32() local 886 fpp = (char *)(argn >= 8 ? ar + argn : fpr + argn); in copy_struct_N32() 891 *(double *)tp = *(double *)fpp; in copy_struct_N32()
|
/external/libffi/src/mips/ |
D | ffi.c | 919 char *fpp; in copy_struct_N32() local 928 fpp = (char *)(argn >= 8 ? ar + argn : fpr + argn); in copy_struct_N32() 933 *(double *)tp = *(double *)fpp; in copy_struct_N32()
|
/external/llvm-project/llvm/test/CodeGen/X86/ |
D | retpoline-external.ll | 64 define void @icall_global_fp(i32 %x, void (i32)** %fpp) #0 {
|
D | lvi-hardening-indirectbr.ll | 42 define void @icall_global_fp(i32 %x, void (i32)** %fpp) #0 {
|
D | retpoline.ll | 64 define void @icall_global_fp(i32 %x, void (i32)** %fpp) #0 {
|
/external/igt-gpu-tools/lib/ |
D | igt_fb.c | 2679 uint8_t fpp = alpha ? 4 : 3; in convert_yuv16_to_float() local 2727 rgb_tmp += fpp; in convert_yuv16_to_float() 2757 uint8_t fpp = alpha ? 4 : 3; in convert_float_to_yuv16() local 2799 rgb_tmp += fpp; in convert_float_to_yuv16() 2823 pair_float += (dst_fmt->hsub - 1) * fpp; in convert_float_to_yuv16()
|
/external/ImageMagick/PerlMagick/t/reference/write/composite/ |
D | CopyRed.miff | 41 …��pp��pp��pp��pp��pp��pp��pp��pp�3pp�8pp�Dpp��pp��pp�qpp�]pp�rpp�opp�fpp�gpp�epp�fpp�kpp�ppp�ppp�p…
|
/external/pdfium/third_party/libtiff/ |
D | tif_dir.c | 68 void _TIFFsetFloatArray(float** fpp, float* fp, uint32 n) in _TIFFsetFloatArray() argument 69 { setByteArray((void**) fpp, (void*) fp, n, sizeof (float)); } in _TIFFsetFloatArray()
|
/external/llvm-project/clang/docs/ |
D | Toolchain.rst | 98 * Fortran (``-x f95``, ``.f``, ``.f9[05]``, ``.for``, ``.fpp``, case-insensitive)
|