HomeSort by relevance Sort by last modified time
    Searched defs:base (Results 301 - 325 of 5760) sorted by null

<<11121314151617181920>>

  /external/e2fsprogs/lib/e2p/
percent.c 21 unsigned int e2p_percent(int percent, unsigned int base)
28 return base / (100 / percent);
29 if (mask & base)
30 return (base / 100) * percent;
31 return base * percent / 100;
40 unsigned int base; local
46 fprintf(stderr, "Usage: %s percent base\n", argv[0]);
56 base = strtoul(argv[2], &p, 0);
58 fprintf(stderr, "Bad base: %s\n", argv[2]);
62 printf("%d percent of %u is %u.\n", percent, base,
    [all...]
  /external/guava/guava/src/com/google/common/base/
FinalizableReference.java 17 package com.google.common.base;
Function.java 17 package com.google.common.base;
Predicate.java 17 package com.google.common.base;
Supplier.java 17 package com.google.common.base;
  /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
Charsets.java 17 package com.google.common.base;
  /external/guava/guava-gwt/test/com/google/common/base/
TestModuleEntryPoint.java 17 package com.google.common.base;
  /external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
CharsetsTest.java 17 package com.google.common.base;
  /external/guava/guava-tests/test/com/google/common/base/
PackageSanityTests.java 17 package com.google.common.base;
22 * Basic sanity tests for classes in {@code common.base}.
  /external/icu/icu4c/source/i18n/
nounit.cpp 13 NoUnit U_EXPORT2 NoUnit::base() { function in class:NoUnit
14 return NoUnit("base");
  /external/libchrome/base/
atomic_sequence_num.h 8 #include "base/atomicops.h"
9 #include "base/macros.h"
11 namespace base { namespace
26 base::subtle::NoBarrier_AtomicIncrement(&seq_, 1) - 1);
33 base::subtle::Release_Store(&seq_, 0);
36 base::subtle::Atomic32 seq_;
58 } // namespace base
atomicops.h 39 #include "base/base_export.h"
51 namespace base { namespace
145 } // namespace base
150 # include "base/atomicops_internals_x86_msvc.h"
152 # include "base/atomicops_internals_portable.h"
158 #include "base/atomicops_internals_atomicword_compat.h"
auto_reset.h 8 #include "base/macros.h"
10 // base::AutoReset<> is useful for setting a variable to a new value only within
11 // a particular scope. An base::AutoReset<> object resets a variable to its
15 // This should be obvious, but note that an base::AutoReset<> instance should
17 // writes when the base::AutoReset<> object is destroyed.
19 namespace base { namespace
39 } // namespace base
base64.cc 5 #include "base/base64.h"
11 namespace base { namespace
39 } // namespace base
base64_unittest.cc 5 #include "base/base64.h"
9 namespace base { namespace
40 } // namespace base
callback_helpers.h 17 #include "base/callback.h"
18 #include "base/compiler_specific.h"
19 #include "base/macros.h"
21 namespace base { namespace
26 base::Callback<Signature, copy_mode, repeat_mode> ResetAndReturn(
27 base::Callback<Signature, copy_mode, repeat_mode>* cb) {
28 base::Callback<Signature, copy_mode, repeat_mode> ret(std::move(*cb));
62 } // namespace base
critical_closure.h 10 #include "base/callback.h"
11 #include "base/macros.h"
15 #include "base/bind.h"
16 #include "base/ios/scoped_critical_action.h"
19 namespace base { namespace
54 // MakeCriticalClosure(base::Bind(&WriteToDiskTask, path_, data)));
62 return base::BindOnce(
74 } // namespace base
environment.h 12 #include "base/base_export.h"
13 #include "base/strings/string16.h"
14 #include "base/strings/string_piece.h"
17 namespace base { namespace
88 } // namespace base
  /external/libchrome/base/debug/
debugger.cc 5 #include "base/debug/debugger.h"
6 #include "base/logging.h"
7 #include "base/threading/platform_thread.h"
10 namespace base { namespace
42 } // namespace base
profiler.h 12 #include "base/base_export.h"
18 namespace base { namespace
92 } // namespace base
task_annotator_unittest.cc 5 #include "base/debug/task_annotator.h"
6 #include "base/bind.h"
7 #include "base/pending_task.h"
10 namespace base { namespace
32 } // namespace base
  /external/libchrome/base/files/
file_path_constants.cc 7 #include "base/files/file_path.h"
8 #include "base/macros.h"
10 namespace base { namespace
25 } // namespace base
  /external/libchrome/base/memory/
aligned_memory.h 40 #include "base/base_export.h"
41 #include "base/compiler_specific.h"
49 namespace base { namespace
108 // std::unique_ptr<Foo, base::AlignedFreeDeleter> foo;
115 } // namespace base
ptr_util.h 11 namespace base { namespace
72 } // namespace base
raw_scoped_refptr_mismatch_checker.h 11 #include "base/memory/ref_counted.h"
14 // RefCounted(Base|ThreadSafeBase), since by the time the parameter is used, the
20 namespace base { namespace
22 // This is a base internal implementation file used by task.h and callback.h.
30 // raw pointer type and are convertible to a RefCounted(Base|ThreadSafeBase)
56 } // namespace base

Completed in 1482 milliseconds

<<11121314151617181920>>