HomeSort by relevance Sort by last modified time
    Searched defs:Count (Results 1 - 25 of 989) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
StringFuncs.h 26 UINTN Count;
28 // Actually this array can be 0 or more items (based on Count)
  /external/llvm/unittests/MC/
TargetRegistry.cpp 25 int Count = 0;
40 ++Count;
43 ASSERT_NE(Count, 0);
  /prebuilts/go/darwin-x86/src/bytes/
bytes_arm64.go 61 // Count counts the number of non-overlapping instances of sep in s.
62 // If sep is an empty slice, Count returns 1 + the number of UTF-8-encoded code points in s.
63 func Count(s, sep []byte) int {
bytes_generic.go 61 // Count counts the number of non-overlapping instances of sep in s.
62 // If sep is an empty slice, Count returns 1 + the number of UTF-8-encoded code points in s.
63 func Count(s, sep []byte) int {
  /prebuilts/go/darwin-x86/src/strings/
strings_generic.go 57 // Count counts the number of non-overlapping instances of substr in s.
58 // If substr is an empty string, Count returns 1 + the number of Unicode code points in s.
59 func Count(s, substr string) int {
  /prebuilts/go/linux-x86/src/bytes/
bytes_arm64.go 61 // Count counts the number of non-overlapping instances of sep in s.
62 // If sep is an empty slice, Count returns 1 + the number of UTF-8-encoded code points in s.
63 func Count(s, sep []byte) int {
bytes_generic.go 61 // Count counts the number of non-overlapping instances of sep in s.
62 // If sep is an empty slice, Count returns 1 + the number of UTF-8-encoded code points in s.
63 func Count(s, sep []byte) int {
  /prebuilts/go/linux-x86/src/strings/
strings_generic.go 57 // Count counts the number of non-overlapping instances of substr in s.
58 // If substr is an empty string, Count returns 1 + the number of Unicode code points in s.
59 func Count(s, substr string) int {
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/BootMaintenanceManagerUiLib/
BmLib.c 61 UINTN Count;
64 Count = 0;
66 Count += 1;
69 return Count;
  /device/linaro/bootloader/edk2/IntelFsp2WrapperPkg/Library/SecFspWrapperPlatformSecLibSample/
SecGetPerformance.c 49 UINT32 Count;
83 Count = *(UINT32 *) (UINTN) (TopOfTemporaryRam - sizeof (UINT32));
84 Size = Count * sizeof (UINT64);
SecPlatformInformation.c 44 UINT32 Count;
70 Count = *((UINT32 *)(UINTN) (TopOfTemporaryRam - sizeof (UINT32)));
71 Size = Count * sizeof (IA32_HANDOFF_STATUS);
  /device/linaro/bootloader/edk2/IntelFspWrapperPkg/Library/SecPeiFspPlatformSecLibSample/
SecGetPerformance.c 49 UINT32 Count;
83 Count = *(UINT32 *) (UINTN) (TopOfTemporaryRam - sizeof (UINT32));
84 Size = Count * sizeof (UINT64);
SecPlatformInformation.c 44 UINT32 Count;
70 Count = *((UINT32 *)(UINTN) (TopOfTemporaryRam - sizeof (UINT32)));
71 Size = Count * sizeof (IA32_HANDOFF_STATUS);
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/FspSupport/Library/SecFspPlatformSecLibVlv2/
SecGetPerformance.c 48 UINT32 Count;
82 Count = *(UINT32 *) (UINTN) (TopOfTemporaryRam - sizeof (UINT32));
83 Size = Count * sizeof (UINT64);
SecPlatformInformation.c 43 UINT32 Count;
69 Count = *((UINT32 *)(UINTN) (TopOfTemporaryRam - sizeof (UINT32)));
70 Size = Count * sizeof (IA32_HANDOFF_STATUS);
  /external/clang/include/clang-c/
CXString.h 45 unsigned Count;
  /external/eigen/unsupported/Eigen/CXX11/src/Tensor/
TensorSyclLeafCount.h 17 * The leaf count used the pre-order expression tree traverse in order to name
18 * count the number of leaf nodes in the expression
38 static const size_t Count =0;
43 static const size_t Count = LeafCount<Arg>::Count + CategoryCount<Args...>::Count;
49 static const size_t Count =1;
83 static const size_t Count =1;
93 static const size_t Count = 1 + CategoryCount<Expr>::Count;
    [all...]
  /external/llvm/lib/MC/
MCLinkerOptimizationHint.cpp 44 uint64_t Count;
46 void write_impl(const char *, size_t size) override { Count += size; }
48 uint64_t current_pos() const override { return Count; }
51 raw_counting_ostream() : Count(0) {}
  /external/llvm/utils/count/
count.c 1 /*===- count.c - The 'count' testing tool ---------------------------------===*\
14 unsigned Count, NumLines, NumRead;
18 fprintf(stderr, "usage: %s <expected line count>\n", argv[0]);
22 Count = strtol(argv[1], &End, 10);
24 fprintf(stderr, "%s: invalid count argument '%s'\n", argv[0], argv[1]);
44 if (Count != NumLines) {
45 fprintf(stderr, "Expected %d lines, got %d.\n", Count, NumLines);
  /external/pdfium/core/fpdfdoc/
cpdf_annotlist.h 44 size_t Count() const { return m_AnnotList.size(); }
  /external/swiftshader/third_party/LLVM/unittests/ADT/
BitVectorTest.cpp 22 EXPECT_EQ(0U, Vec.count());
30 EXPECT_EQ(5U, Vec.count());
38 EXPECT_EQ(5U, Vec.count());
46 EXPECT_EQ(6U, Inv.count());
66 unsigned Count = 0;
68 ++Count;
72 EXPECT_EQ(Count, Vec.count());
73 EXPECT_EQ(Count, 23u);
85 EXPECT_TRUE(Vec.count() == 3)
    [all...]
SmallBitVectorTest.cpp 19 EXPECT_EQ(0U, Vec.count());
27 EXPECT_EQ(5U, Vec.count());
35 EXPECT_EQ(5U, Vec.count());
43 EXPECT_EQ(6U, Inv.count());
63 unsigned Count = 0;
65 ++Count;
69 EXPECT_EQ(Count, Vec.count());
70 EXPECT_EQ(Count, 23u);
82 EXPECT_TRUE(Vec.count() == 3)
    [all...]
  /external/swiftshader/third_party/LLVM/utils/count/
count.c 1 /*===- count.c - The 'count' testing tool ---------------------------------===*\
14 unsigned Count, NumLines, NumRead;
18 fprintf(stderr, "usage: %s <expected line count>\n", argv[0]);
22 Count = strtol(argv[1], &End, 10);
24 fprintf(stderr, "%s: invalid count argument '%s'\n", argv[0], argv[1]);
44 if (Count != NumLines) {
45 fprintf(stderr, "Expected %d lines, got %d.\n", Count, NumLines);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang-c/
CXString.h 45 unsigned Count;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang-c/
CXString.h 45 unsigned Count;

Completed in 235 milliseconds

1 2 3 4 5 6 7 8 91011>>