/third_party/mesa3d/src/amd/vulkan/radix_sort/common/ |
H A D | macros.h | 34 #define MAX_MACRO(t_,a_,b_) (((a_) > (b_)) ? (a_) : (b_)) 35 #define MIN_MACRO(t_,a_,b_) (((a_) < (b_)) ? (a_) : (b_)) 44 #define BITS_TO_MASK_AT_MACRO(n_,b_) (BITS_TO_MASK_MACRO(n_) <<(b_)) 45 #define BITS_TO_MASK_AT_64_MACRO(n_,b_) (BITS_TO_MASK_64_MACRO(n_)<<(b_)) [all...] |
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/data/ |
H A D | memory_byte_array.cc | 24 : ByteArray(0, length), b_(NULL), allocated_(true) { in MemoryByteArray() 28 : ByteArray(filled_length, filled_length), b_(b), allocated_(false) { in MemoryByteArray() 40 os->Write(b_, offset, length); in CopyTo() 45 if (allocated_ && b_ == NULL) { in Init() 46 b_ = new uint8_t[Size()]; in Init() 47 memset(b_, 0, Size()); in Init() 53 b_[index] = b; in InternalPut() 62 memcpy(b_ + index, b + offset, length); in InternalPut() 68 return b_[index]; in InternalGet() 77 memcpy(b + offset, b_ in InternalGet() [all...] |
H A D | growable_memory_byte_array.cc | 38 os->Write(&b_, offset, length); in CopyTo() 43 if ((size_t)index >= b_.size()) { in InternalPut() 44 b_.resize((size_t)(index + 1)); in InternalPut() 46 b_[index] = b; in InternalPut() 53 if ((size_t)index + length >= b_.size()) { in InternalPut() 56 b_.resize((size_t)(index + length + 1)); in InternalPut() 58 std::copy(b + offset, b + offset + length, b_.begin() + index); in InternalPut() 63 return b_[index]; in InternalGet() 70 memcpy(b + offset, &(b_[0]) + index, length); in InternalGet() 75 b_ in Close() [all...] |
H A D | growable_memory_byte_array.h | 61 std::vector<uint8_t> b_; member in sfntly::GrowableMemoryByteArray
|
H A D | memory_byte_array.h | 75 uint8_t* b_; member in sfntly::MemoryByteArray
|
/third_party/libinput/test/ |
H A D | litest.h | 152 #define litest_assert_comparison_int_(a_, op_, b_) \ 155 __typeof__(b_) _b = b_; \ 161 #a_, #b_); \ 164 #define litest_assert_int_eq(a_, b_) \ 165 litest_assert_comparison_int_(a_, ==, b_) 167 #define litest_assert_int_ne(a_, b_) \ 168 litest_assert_comparison_int_(a_, !=, b_) 170 #define litest_assert_int_lt(a_, b_) \ 171 litest_assert_comparison_int_(a_, <, b_) [all...] |
/third_party/protobuf/src/google/protobuf/stubs/ |
H A D | common_unittest.cc | 175 void SetABMethod(int a, const char* b) { a_ = a; b_ = b; } in SetABMethod() 178 current_instance_->b_ = b; in SetABFunction() 184 b_ = nullptr; in SetUp() 194 const char* b_; member in google::protobuf::__anon17055::ClosureTest 252 EXPECT_NE(cstr, b_); in TEST_F() 255 EXPECT_EQ(cstr, b_); in TEST_F() 263 EXPECT_NE(cstr, b_); in TEST_F() 266 EXPECT_EQ(cstr, b_); in TEST_F() 321 EXPECT_NE(cstr, b_); in TEST_F() 324 EXPECT_EQ(cstr, b_); in TEST_F() [all...] |
/third_party/skia/third_party/externals/freetype/src/base/ |
H A D | ftcalc.c | 174 FT_Long b_, in FT_EXPORT_DEF() 183 b = (FT_UInt64)b_; in FT_EXPORT_DEF() 187 FT_MOVE_SIGN( b_, b, s ); in FT_EXPORT_DEF() 203 FT_Long b_, in FT_BASE_DEF() 212 b = (FT_UInt64)b_; in FT_BASE_DEF() 216 FT_MOVE_SIGN( b_, b, s ); in FT_BASE_DEF() 232 FT_Long b_ ) in FT_EXPORT_DEF() 236 return FT_MULFIX_ASSEMBLER( (FT_Int32)a_, (FT_Int32)b_ ); in FT_EXPORT_DEF() 240 FT_Int64 ab = (FT_Int64)a_ * (FT_Int64)b_; in FT_EXPORT_DEF() 253 FT_Long b_ ) in FT_EXPORT_DEF() [all...] |
/third_party/gn/src/gn/ |
H A D | header_checker_unittest.cc | 22 b_(setup_.settings(), Label(SourceDir("//b/"), "b")), in HeaderCheckerTest() 26 b_.set_output_type(Target::SOURCE_SET); in HeaderCheckerTest() 32 b_.SetToolchain(setup_.toolchain(), &err); in HeaderCheckerTest() 36 a_.public_deps().push_back(LabelTargetPair(&b_)); in HeaderCheckerTest() 37 b_.public_deps().push_back(LabelTargetPair(&c_)); in HeaderCheckerTest() 41 b_.visibility().SetPublic(); in HeaderCheckerTest() 47 b_.OnResolved(&err); in HeaderCheckerTest() 51 targets_.push_back(&b_); in HeaderCheckerTest() 69 Target b_; member in __anon2920::HeaderCheckerTest 106 EXPECT_TRUE(checker->IsDependencyOf(&b_, in TEST_F() [all...] |
/third_party/node/deps/openssl/openssl/crypto/chacha/asm/ |
H A D | chacha-x86.pl | 68 ($b,$b_)=("ebx","ebp"); 106 &mov (&DWP(4*$bp,"esp"),$b_) if ($i!=0); 112 &mov ($b_,&DWP(4*$bn,"esp")) if ($i<7); 113 &mov ($b_,&DWP(128,"esp")) if ($i==7); # loop counter 123 &add ($a,$b_) if ($i<7); # elsewhere 126 ($b,$b_)=($b_,$b); 195 &mov ($b_,&DWP(64+4*6,"esp")); 201 &mov (&DWP(4*6,"esp"),$b_); 210 &mov ($b_, [all...] |
/third_party/openssl/crypto/chacha/asm/ |
H A D | chacha-x86.pl | 68 ($b,$b_)=("ebx","ebp"); 106 &mov (&DWP(4*$bp,"esp"),$b_) if ($i!=0); 112 &mov ($b_,&DWP(4*$bn,"esp")) if ($i<7); 113 &mov ($b_,&DWP(128,"esp")) if ($i==7); # loop counter 123 &add ($a,$b_) if ($i<7); # elsewhere 126 ($b,$b_)=($b_,$b); 195 &mov ($b_,&DWP(64+4*6,"esp")); 201 &mov (&DWP(4*6,"esp"),$b_); 210 &mov ($b_, [all...] |
/third_party/skia/third_party/externals/abseil-cpp/absl/random/ |
H A D | beta_distribution.h | 68 // a_ = min(beta, alpha), b_ = max(beta, alpha). in param_type() 72 b_ = alpha; in param_type() 76 b_ = beta; in param_type() 78 if (a_ <= 1 && b_ >= ThresholdForLargeA()) { in param_type() 86 if ((b_ < 1.0 && a_ + b_ <= 1.2) || a_ <= ThresholdForSmallA()) { in param_type() 91 b_ = result_type(1) / beta_; in param_type() 92 if (std::isinf(a_) || std::isinf(b_)) { in param_type() 102 result_type r = a_ / b_; in param_type() 106 x_ = a_ + b_; in param_type() 185 result_type b_; // the larger of {alpha, beta}, or 1.0/beta_ in JOEHNK global() member in absl::beta_distribution::param_type [all...] |
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-blob.hh | 82 hb_blob_ptr_t (hb_blob_t *b_ = nullptr) : b (b_) {} in hb_blob_ptr_t() 83 hb_blob_t * operator = (hb_blob_t *b_) { return b = b_; } in operator =()
|
/third_party/openssl/ohos_lite/include/openssl/ |
H A D | objects.h | 114 static int nm##_cmp_BSEARCH_CMP_FN(const void *a_, const void *b_) \ 117 type2 const *b = b_; \ 128 static int nm##_cmp_BSEARCH_CMP_FN(const void *a_, const void *b_) \ 131 type2 const *b = b_; \
|
/third_party/musl/porting/liteos_m/user/src/ |
H A D | libc_init.c | 36 #define USR_LIBC_FUNC_DEF(type, func, ...) extern type b_##func(__VA_ARGS__); 42 #define USR_LIBC_FUNC_DEF(type, func, ...) ops->func = b_##func; in _lib_ops_init()
|
/third_party/node/deps/openssl/openssl/include/openssl/ |
H A D | objects.h | 122 static int nm##_cmp_BSEARCH_CMP_FN(const void *a_, const void *b_) \ 125 type2 const *b = b_; \ 136 static int nm##_cmp_BSEARCH_CMP_FN(const void *a_, const void *b_) \ 139 type2 const *b = b_; \
|
/third_party/openssl/include/openssl/ |
H A D | objects.h | 122 static int nm##_cmp_BSEARCH_CMP_FN(const void *a_, const void *b_) \ 125 type2 const *b = b_; \ 136 static int nm##_cmp_BSEARCH_CMP_FN(const void *a_, const void *b_) \ 139 type2 const *b = b_; \
|
/third_party/vk-gl-cts/external/amber/src/src/ |
H A D | command.h | 385 void SetB(float b) { b_ = b; } in SetB() 386 float GetB() const { return b_; } in GetB() 411 float b_ = 0.0; member in amber::ProbeCommand 610 void SetB(float b) { b_ = b; } in SetB() 611 float GetB() const { return b_; } in GetB() 621 float b_ = 0.0; member in amber::ClearColorCommand
|
/third_party/benchmark/src/ |
H A D | benchmark_runner.cc | 221 const benchmark::internal::BenchmarkInstance& b_, in BenchmarkRunner() 224 : b(b_), in BenchmarkRunner() 227 min_time(ComputeMinTime(b_, parsed_benchtime_flag)), in BenchmarkRunner() 239 ? ComputeIters(b_, parsed_benchtime_flag) in BenchmarkRunner() 220 BenchmarkRunner( const benchmark::internal::BenchmarkInstance& b_, PerfCountersMeasurement* pcm_, BenchmarkReporter::PerFamilyRunReports* reports_for_family_) BenchmarkRunner() argument
|
H A D | benchmark_runner.h | 60 BenchmarkRunner(const benchmark::internal::BenchmarkInstance& b_,
|
/third_party/googletest/googlemock/test/ |
H A D | gmock-spec-builders_test.cc | 1332 EXPECT_CALL(b_, DoB()).Times(2).InSequence(y); in PartialOrderTest() 1338 MockB b_; member in testing::__anon3008::PartialOrderTest 1343 b_.DoB(); in TEST_F() 1348 b_.DoB(); in TEST_F() 1357 b_.DoB(); in TEST_F() 1358 b_.DoB(); in TEST_F() 1367 b_.DoB(); in TEST_F() 1368 b_.DoB(); in TEST_F() 1374 b_.DoB(); in TEST_F() 1375 b_ in TEST_F() [all...] |
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
H A D | loop_dependence.h | 203 : Constraint(loop), a_(a), b_(b), c_(c) {} in DependenceLine() 211 SENode* GetB() const { return b_; } in GetB() 216 SENode* b_; member in spvtools::opt::DependenceLine
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
H A D | loop_dependence.h | 203 : Constraint(loop), a_(a), b_(b), c_(c) {} in DependenceLine() 211 SENode* GetB() const { return b_; } in GetB() 216 SENode* b_; member in spvtools::opt::DependenceLine
|
/third_party/spirv-tools/source/opt/ |
H A D | loop_dependence.h | 203 : Constraint(loop), a_(a), b_(b), c_(c) {} in DependenceLine() 211 SENode* GetB() const { return b_; } in GetB() 216 SENode* b_; member in spvtools::opt::DependenceLine
|
/third_party/libuv/test/ |
H A D | task.h | 173 unsigned char* b_ = (unsigned char*)b; \ 188 fprintf(stderr, "%02X", b_[i]); \
|