@@ -243,7 +243,7 @@ struct BM_SpacedEncodingTraits<BooleanType> {
243243 using CType = bool ;
244244};
245245
246- static void BM_SpacedArgs (arrow::BenchmarkType* bench) {
246+ static void BM_SpacedArgs (:: arrow::BenchmarkType* bench) {
247247 constexpr auto kPlainSpacedSize = 32 * 1024 ; // 32k
248248
249249 bench->Args ({/* size*/ kPlainSpacedSize , /* null_in_ten_thousand*/ 1 });
@@ -778,7 +778,7 @@ BENCHMARK(BM_DeltaBitPackingDecode_Int64_Narrow)->Range(MIN_RANGE, MAX_RANGE);
778778BENCHMARK (BM_DeltaBitPackingDecode_Int32_Wide)->Range (MIN_RANGE, MAX_RANGE);
779779BENCHMARK (BM_DeltaBitPackingDecode_Int64_Wide)->Range (MIN_RANGE, MAX_RANGE);
780780
781- static void ByteArrayCustomArguments (arrow::BenchmarkType* b) {
781+ static void ByteArrayCustomArguments (:: arrow::BenchmarkType* b) {
782782 b->ArgsProduct ({{8 , 64 , 1024 }, {512 , 2048 }})
783783 ->ArgNames ({" max-string-length" , " batch-size" });
784784}
@@ -999,7 +999,7 @@ static void BM_DeltaDecodingByteArray(benchmark::State& state) {
999999 static_cast <double >(plain_encoded_size) / encoded_size;
10001000}
10011001
1002- static void ByteArrayDeltaCustomArguments (arrow::BenchmarkType* b) {
1002+ static void ByteArrayDeltaCustomArguments (:: arrow::BenchmarkType* b) {
10031003 for (int max_string_length : {8 , 64 , 1024 }) {
10041004 for (int batch_size : {512 , 2048 }) {
10051005 for (int prefixed_percent : {10 , 90 , 99 }) {
@@ -1619,7 +1619,7 @@ class BM_DecodeArrowBooleanRle : public BenchmarkDecodeArrowBoolean {
16191619 }
16201620};
16211621
1622- static void BooleanWithNullCustomArguments (arrow::BenchmarkType* b) {
1622+ static void BooleanWithNullCustomArguments (:: arrow::BenchmarkType* b) {
16231623 b->ArgsProduct ({
16241624 benchmark::CreateRange (MIN_RANGE, MAX_RANGE, /* multi=*/ 4 ),
16251625 {1 , 100 , 1000 , 5000 , 10000 },
0 commit comments