Searched refs:same_sign (Results 1 – 4 of 4) sorted by relevance
/third_party/ffmpeg/libavcodec/ |
D | aptx.c | 469 int32_t sign, same_sign[2], weight[2], sw1, range; in aptx_process_subband() local 475 same_sign[0] = sign * prediction->prev_sign[0]; in aptx_process_subband() 476 same_sign[1] = sign * prediction->prev_sign[1]; in aptx_process_subband() 481 sw1 = rshift32(-same_sign[1] * prediction->s_weight[1], 1); in aptx_process_subband() 485 weight[0] = 254 * prediction->s_weight[0] + 0x800000*same_sign[0] + sw1; in aptx_process_subband() 489 weight[1] = 255 * prediction->s_weight[1] + 0xC00000*same_sign[1]; in aptx_process_subband()
|
/third_party/node/deps/v8/src/bigint/ |
D | bigint.h | 313 inline int AddSignedResultLength(int x_length, int y_length, bool same_sign) { in AddSignedResultLength() argument 314 return same_sign ? AddResultLength(x_length, y_length) in AddSignedResultLength() 319 bool same_sign) { in SubtractSignedResultLength() argument 320 return same_sign ? std::max(x_length, y_length) in SubtractSignedResultLength()
|
/third_party/json/include/nlohmann/detail/meta/ |
D | type_traits.hpp | 603 using same_sign = std::integral_constant < bool, typedef 609 || (same_sign<OfType, T>::value && sizeof(OfType) == sizeof(T)) >;
|
/third_party/json/single_include/nlohmann/ |
D | json.hpp | 3999 using same_sign = std::integral_constant < bool, typedef 4005 || (same_sign<OfType, T>::value && sizeof(OfType) == sizeof(T)) >;
|