/third_party/boost/libs/log/test/compile/ |
D | src_logger_assignable.cpp | 23 LoggerT lg1, lg2; in test() local 28 lg1 = lg2; in test()
|
/third_party/grpc/third_party/upb/upb/ |
D | decode.c | 359 size_t lg2 = desctype_to_elem_size_lg2[field->descriptortype]; in decode_toarray() local 360 arr = _upb_array_new(&d->arena, 4, lg2); in decode_toarray() 398 int lg2 = op - OP_FIXPCK_LG2(0); in decode_toarray() local 399 int mask = (1 << lg2) - 1; in decode_toarray() 400 size_t count = val.size >> lg2; in decode_toarray() 405 mem = UPB_PTR_AT(_upb_array_ptr(arr), arr->len << lg2, void); in decode_toarray() 414 int lg2 = op - OP_VARPCK_LG2(0); in decode_toarray() local 415 int scale = 1 << lg2; in decode_toarray() 417 char *out = UPB_PTR_AT(_upb_array_ptr(arr), arr->len << lg2, void); in decode_toarray() 423 out = UPB_PTR_AT(_upb_array_ptr(arr), arr->len << lg2, void); in decode_toarray()
|
D | reflection.c | 322 int lg2 = arr->data & 7; in upb_array_get() local 324 memcpy(&ret, data + (i << lg2), 1 << lg2); in upb_array_get() 330 int lg2 = arr->data & 7; in upb_array_set() local 332 memcpy(data + (i << lg2), &val, 1 << lg2); in upb_array_set()
|
D | upb.h | 321 int lg2 = 0; in _upb_lg2ceil() local 322 while (1 << lg2 < x) lg2++; in _upb_lg2ceil() 323 return lg2; in _upb_lg2ceil()
|
/third_party/libpng/ |
D | png.c | 3641 unsigned int lg2 = 0; 3652 lg2 = 4, x <<= 4; 3655 lg2 += 2, x <<= 2; 3658 lg2 += 1, x <<= 1; 3661 return (png_int_32)((lg2 << 16) + ((png_8bit_l2[x-128]+32768)>>16)); 3698 unsigned int lg2 = 0; 3705 lg2 = 8, x <<= 8; 3708 lg2 += 4, x <<= 4; 3711 lg2 += 2, x <<= 2; 3714 lg2 += 1, x <<= 1; [all …]
|
/third_party/flutter/skia/third_party/externals/libpng/ |
D | png.c | 3641 unsigned int lg2 = 0; 3652 lg2 = 4, x <<= 4; 3655 lg2 += 2, x <<= 2; 3658 lg2 += 1, x <<= 1; 3661 return (png_int_32)((lg2 << 16) + ((png_8bit_l2[x-128]+32768)>>16)); 3698 unsigned int lg2 = 0; 3705 lg2 = 8, x <<= 8; 3708 lg2 += 4, x <<= 4; 3711 lg2 += 2, x <<= 2; 3714 lg2 += 1, x <<= 1; [all …]
|
/third_party/skia/third_party/externals/libpng/ |
D | png.c | 3641 unsigned int lg2 = 0; 3652 lg2 = 4, x <<= 4; 3655 lg2 += 2, x <<= 2; 3658 lg2 += 1, x <<= 1; 3661 return (png_int_32)((lg2 << 16) + ((png_8bit_l2[x-128]+32768)>>16)); 3698 unsigned int lg2 = 0; 3705 lg2 = 8, x <<= 8; 3708 lg2 += 4, x <<= 4; 3711 lg2 += 2, x <<= 2; 3714 lg2 += 1, x <<= 1; [all …]
|
/third_party/jerryscript/jerry-libm/ |
D | pow.c | 109 #define lg2 6.93147180559945286227e-01 /* 0x3FE62E42, 0xFEFA39EF */ macro 430 v = (p_l - (t.dbl - p_h.dbl)) * lg2 + t.dbl * lg2_l; in pow() 467 #undef lg2
|
/third_party/flutter/skia/third_party/externals/sdl/src/libm/ |
D | e_pow.c | 92 lg2 = 6.93147180559945286227e-01, /* 0x3FE62E42, 0xFEFA39EF */ 328 v = (p_l - (t - p_h)) * lg2 + t * lg2_l;
|
/third_party/protobuf/php/ext/google/protobuf/ |
D | php-upb.c | 542 int lg2 = op - OP_FIXPCK_LG2(0); in decode_toarray() local 543 int mask = (1 << lg2) - 1; in decode_toarray() 544 size_t count = val.str_val.size >> lg2; in decode_toarray() 549 mem = UPB_PTR_AT(_upb_array_ptr(arr), arr->len << lg2, void); in decode_toarray() 558 int lg2 = op - OP_VARPCK_LG2(0); in decode_toarray() local 559 int scale = 1 << lg2; in decode_toarray() 562 char *out = UPB_PTR_AT(_upb_array_ptr(arr), arr->len << lg2, void); in decode_toarray() 568 out = UPB_PTR_AT(_upb_array_ptr(arr), arr->len << lg2, void); in decode_toarray() 1358 int lg2 = _upb_fieldtype_to_sizelg2[type]; in _upb_array_append_fallback() local 1364 memcpy(data + (elem << lg2), value, 1 << lg2); in _upb_array_append_fallback() [all …]
|
/third_party/protobuf/ruby/ext/google/protobuf_c/ |
D | upb.c | 490 int lg2 = op - OP_FIXPCK_LG2(0); in decode_toarray() local 491 int mask = (1 << lg2) - 1; in decode_toarray() 492 int count = val.str_val.size >> lg2; in decode_toarray() 497 mem = UPB_PTR_AT(_upb_array_ptr(arr), arr->len << lg2, void); in decode_toarray() 506 int lg2 = op - OP_VARPCK_LG2(0); in decode_toarray() local 507 int scale = 1 << lg2; in decode_toarray() 510 char *out = UPB_PTR_AT(_upb_array_ptr(arr), arr->len << lg2, void); in decode_toarray() 516 out = UPB_PTR_AT(_upb_array_ptr(arr), arr->len << lg2, void); in decode_toarray() 1333 int lg2 = _upb_fieldtype_to_sizelg2[type]; in _upb_array_append_fallback() local 1339 memcpy(data + (elem << lg2), value, 1 << lg2); in _upb_array_append_fallback() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/ |
D | NVPTXIntrinsics.td | 545 def INT_NVVM_LG2_APPROX_FTZ_F : F_MATH_1<"lg2.approx.ftz.f32 \t$dst, $src0;", 547 def INT_NVVM_LG2_APPROX_F : F_MATH_1<"lg2.approx.f32 \t$dst, $src0;", 549 def INT_NVVM_LG2_APPROX_D : F_MATH_1<"lg2.approx.f64 \t$dst, $src0;",
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/build/Fuchsia/include/llvm/IR/ |
D | Intrinsics.gen | 3040 nvvm_lg2_approx_d, // llvm.nvvm.lg2.approx.d 3041 nvvm_lg2_approx_f, // llvm.nvvm.lg2.approx.f 3042 nvvm_lg2_approx_ftz_f, // llvm.nvvm.lg2.approx.ftz.f 9098 "llvm.nvvm.lg2.approx.d", 9099 "llvm.nvvm.lg2.approx.f", 9100 "llvm.nvvm.lg2.approx.ftz.f", 17038 1, // llvm.nvvm.lg2.approx.d 17039 1, // llvm.nvvm.lg2.approx.f 17040 1, // llvm.nvvm.lg2.approx.ftz.f
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/build/Windows/include/llvm/IR/ |
D | Intrinsics.gen | 3040 nvvm_lg2_approx_d, // llvm.nvvm.lg2.approx.d 3041 nvvm_lg2_approx_f, // llvm.nvvm.lg2.approx.f 3042 nvvm_lg2_approx_ftz_f, // llvm.nvvm.lg2.approx.ftz.f 9098 "llvm.nvvm.lg2.approx.d", 9099 "llvm.nvvm.lg2.approx.f", 9100 "llvm.nvvm.lg2.approx.ftz.f", 17038 1, // llvm.nvvm.lg2.approx.d 17039 1, // llvm.nvvm.lg2.approx.f 17040 1, // llvm.nvvm.lg2.approx.ftz.f
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/build/Android/include/llvm/IR/ |
D | Intrinsics.gen | 3040 nvvm_lg2_approx_d, // llvm.nvvm.lg2.approx.d 3041 nvvm_lg2_approx_f, // llvm.nvvm.lg2.approx.f 3042 nvvm_lg2_approx_ftz_f, // llvm.nvvm.lg2.approx.ftz.f 9098 "llvm.nvvm.lg2.approx.d", 9099 "llvm.nvvm.lg2.approx.f", 9100 "llvm.nvvm.lg2.approx.ftz.f", 17038 1, // llvm.nvvm.lg2.approx.d 17039 1, // llvm.nvvm.lg2.approx.f 17040 1, // llvm.nvvm.lg2.approx.ftz.f
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/build/Linux/include/llvm/IR/ |
D | Intrinsics.gen | 3040 nvvm_lg2_approx_d, // llvm.nvvm.lg2.approx.d 3041 nvvm_lg2_approx_f, // llvm.nvvm.lg2.approx.f 3042 nvvm_lg2_approx_ftz_f, // llvm.nvvm.lg2.approx.ftz.f 9098 "llvm.nvvm.lg2.approx.d", 9099 "llvm.nvvm.lg2.approx.f", 9100 "llvm.nvvm.lg2.approx.ftz.f", 17038 1, // llvm.nvvm.lg2.approx.d 17039 1, // llvm.nvvm.lg2.approx.f 17040 1, // llvm.nvvm.lg2.approx.ftz.f
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/build/MacOS/include/llvm/IR/ |
D | Intrinsics.gen | 3034 nvvm_lg2_approx_d, // llvm.nvvm.lg2.approx.d 3035 nvvm_lg2_approx_f, // llvm.nvvm.lg2.approx.f 3036 nvvm_lg2_approx_ftz_f, // llvm.nvvm.lg2.approx.ftz.f 9058 "llvm.nvvm.lg2.approx.d", 9059 "llvm.nvvm.lg2.approx.f", 9060 "llvm.nvvm.lg2.approx.ftz.f", 16943 1, // llvm.nvvm.lg2.approx.d 16944 1, // llvm.nvvm.lg2.approx.f 16945 1, // llvm.nvvm.lg2.approx.ftz.f
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/include/llvm/IR/ |
D | IntrinsicImpl.inc | 4519 "llvm.nvvm.lg2.approx.d", 4520 "llvm.nvvm.lg2.approx.f", 4521 "llvm.nvvm.lg2.approx.ftz.f", 14652 1, // llvm.nvvm.lg2.approx.d 14653 1, // llvm.nvvm.lg2.approx.f 14654 1, // llvm.nvvm.lg2.approx.ftz.f
|