Home
last modified time | relevance | path

Searched refs:m_b (Results 1 – 25 of 1324) sorted by relevance

12345678910>>...53

/dports/graphics/libprojectm/projectm-3.1.12/src/MilkDrop2/vis_milk2/
H A Dtextmgr.cpp109 m_msg[m_b][m_nMsg[m_b]].pfont = NULL; in DrawBox()
111 m_msg[m_b][m_nMsg[m_b]].flags = 0; in DrawBox()
141 m_msg[m_b][m_nMsg[m_b]].pfont = pFont; in DrawText()
143 m_msg[m_b][m_nMsg[m_b]].flags = flags; in DrawText()
144 m_msg[m_b][m_nMsg[m_b]].color = color; in DrawText()
159 m_msg[m_b][m_nMsg[m_b]-1] = m_msg[m_b][m_nMsg[m_b]-2]; in DrawText()
160 m_msg[m_b][m_nMsg[m_b]-2] = x; in DrawText()
211 m_msg[m_b][m_nMsg[m_b]-1] = m_msg[m_b][m_nMsg[m_b]-2]; in DrawTextW()
212 m_msg[m_b][m_nMsg[m_b]-2] = x; in DrawTextW()
605 …m_msg[m_b][i].pfont->DrawTextW(NULL, m_msg[m_b][i].msg, -1, &m_msg[m_b][i].rect, m_msg[m_b][i].fla… in DrawNow()
[all …]
/dports/emulators/mess/mame-mame0226/src/devices/cpu/e0c6200/
H A De0c6200.cpp447 case 0xa85: m_b = op_add(m_b, m_b, D_FLAG); break; in execute_one()
465 case 0xa95: m_b = op_adc(m_b, m_b, D_FLAG); break; in execute_one()
495 case 0xaa5: m_b = op_sub(m_b, m_b, D_FLAG); break; in execute_one()
513 case 0xab5: m_b = op_sbc(m_b, m_b, D_FLAG); break; in execute_one()
543 case 0xf05: op_sub(m_b, m_b); break; in execute_one()
561 case 0xac5: m_b = op_and(m_b, m_b); break; in execute_one()
579 case 0xf15: op_and(m_b, m_b); break; in execute_one()
597 case 0xad5: m_b = op_or(m_b, m_b); break; in execute_one()
615 case 0xae5: m_b = op_xor(m_b, m_b); break; in execute_one()
629 case 0xaf5: m_b = op_rlc(m_b); break; in execute_one()
[all …]
/dports/emulators/mame/mame-mame0226/src/devices/cpu/e0c6200/
H A De0c6200.cpp447 case 0xa85: m_b = op_add(m_b, m_b, D_FLAG); break; in execute_one()
465 case 0xa95: m_b = op_adc(m_b, m_b, D_FLAG); break; in execute_one()
495 case 0xaa5: m_b = op_sub(m_b, m_b, D_FLAG); break; in execute_one()
513 case 0xab5: m_b = op_sbc(m_b, m_b, D_FLAG); break; in execute_one()
543 case 0xf05: op_sub(m_b, m_b); break; in execute_one()
561 case 0xac5: m_b = op_and(m_b, m_b); break; in execute_one()
579 case 0xf15: op_and(m_b, m_b); break; in execute_one()
597 case 0xad5: m_b = op_or(m_b, m_b); break; in execute_one()
615 case 0xae5: m_b = op_xor(m_b, m_b); break; in execute_one()
629 case 0xaf5: m_b = op_rlc(m_b); break; in execute_one()
[all …]
/dports/emulators/mess/mame-mame0226/src/emu/video/
H A Drgbgen.cpp34 m_b = (m_b * scale1 + color2.m_b * scale2) >> 8; in blend()
38 m_b |= (m_b & 0x00800000) ? 0xff000000 : 0; in blend()
53 m_b = (m_b * scale) >> 8; in scale_imm_and_clamp()
61 if (u32(m_b) > 255) { m_b = (m_b < 0) ? 0 : 255; } in scale_imm_and_clamp()
69 m_b = (m_b * scale.m_b) >> 8; in scale_and_clamp()
77 if (u32(m_b) > 255) { m_b = (m_b < 0) ? 0 : 255; } in scale_and_clamp()
86 m_b = (m_b * scale.m_b) >> 8; in scale_add_and_clamp()
94 m_b += other.m_b; in scale_add_and_clamp()
98 if (u32(m_b) > 255) { m_b = (m_b < 0) ? 0 : 255; } in scale_add_and_clamp()
106 m_b = (m_b * scale.m_b + other.m_b * scale2.m_b) >> 8; in scale2_add_and_clamp()
[all …]
H A Drgbgen.h54 const u8 b = (m_b < 0) ? 0 : (m_b > 255) ? 255 : m_b; in to_rgba_clamp()
131 m_b = b - m_b; in subr_imm_rgba()
157 m_b <<= shift.m_b; in shl()
176 m_b = s32(u32(m_b) >> shift.m_b); in shr()
187 m_b = s32(u32(m_b) >> shift); in shr_imm()
204 m_b >>= shift.m_b; in sra()
206 m_b |= ~0 << (32 - shift.m_b); in sra()
270 if (m_b & sign) m_b = 0; in clamp_and_clear()
280 m_b = (m_b < 0) ? 0 : (m_b > 255) ? 255 : m_b; in clamp_to_uint8()
303 m_b = (m_b > value) ? value : m_b; in min()
[all …]
/dports/emulators/mame/mame-mame0226/src/emu/video/
H A Drgbgen.cpp34 m_b = (m_b * scale1 + color2.m_b * scale2) >> 8; in blend()
38 m_b |= (m_b & 0x00800000) ? 0xff000000 : 0; in blend()
53 m_b = (m_b * scale) >> 8; in scale_imm_and_clamp()
61 if (u32(m_b) > 255) { m_b = (m_b < 0) ? 0 : 255; } in scale_imm_and_clamp()
69 m_b = (m_b * scale.m_b) >> 8; in scale_and_clamp()
77 if (u32(m_b) > 255) { m_b = (m_b < 0) ? 0 : 255; } in scale_and_clamp()
86 m_b = (m_b * scale.m_b) >> 8; in scale_add_and_clamp()
94 m_b += other.m_b; in scale_add_and_clamp()
98 if (u32(m_b) > 255) { m_b = (m_b < 0) ? 0 : 255; } in scale_add_and_clamp()
106 m_b = (m_b * scale.m_b + other.m_b * scale2.m_b) >> 8; in scale2_add_and_clamp()
[all …]
H A Drgbgen.h54 const u8 b = (m_b < 0) ? 0 : (m_b > 255) ? 255 : m_b; in to_rgba_clamp()
131 m_b = b - m_b; in subr_imm_rgba()
157 m_b <<= shift.m_b; in shl()
176 m_b = s32(u32(m_b) >> shift.m_b); in shr()
187 m_b = s32(u32(m_b) >> shift); in shr_imm()
204 m_b >>= shift.m_b; in sra()
206 m_b |= ~0 << (32 - shift.m_b); in sra()
270 if (m_b & sign) m_b = 0; in clamp_and_clear()
280 m_b = (m_b < 0) ? 0 : (m_b > 255) ? 255 : m_b; in clamp_to_uint8()
303 m_b = (m_b > value) ? value : m_b; in min()
[all …]
/dports/devel/atlas-devel/Atlas-C++-0.6.4/Atlas/
H A DEncoderBase.h38 void streamBegin() { m_b.streamBegin(); } in streamBegin()
40 void streamEnd() { m_b.streamEnd(); } in streamEnd()
43 { m_b.mapMapItem(name); } in mapMapItem()
45 { m_b.mapListItem(name); } in mapListItem()
47 { m_b.mapIntItem(name, i); } in mapIntItem()
49 { m_b.mapFloatItem(name, d); } in mapFloatItem()
51 { m_b.mapStringItem(name, s); } in mapStringItem()
53 { m_b.mapEnd(); } in mapEnd()
55 void listMapItem() { m_b.listMapItem(); } in listMapItem()
60 void listEnd() { m_b.listEnd(); } in listEnd()
[all …]
/dports/devel/atlas-devel/Atlas-C++-0.6.4/Atlas/Message/
H A DMEncoder.cpp34 m_b.mapEnd(); in listElementItem()
43 m_b.listEnd(); in listElementItem()
52 m_b.listMapItem(); in listElementMapItem()
57 m_b.mapEnd(); in listElementMapItem()
62 m_b.listListItem(); in listElementListItem()
67 m_b.listEnd(); in listElementListItem()
82 m_b.mapEnd(); in mapElementItem()
106 m_b.mapEnd(); in mapElementMapItem()
116 m_b.listEnd(); in mapElementListItem()
121 m_b.streamMessage(); in streamMessageElement()
[all …]
/dports/emulators/mess/mame-mame0226/src/devices/machine/
H A D74381.cpp24 , m_b(0) in sn74s381_device()
39 save_item(NAME(m_b)); in device_start()
54 m_b = 0; in device_reset()
74 m_b = data; in b_w()
103 m_f = (m_b - d) & 0xf; in update()
104 m_p = (( m_a ^ m_b) >> 3) == 0; in update()
122 m_p = ((m_a ^ m_b) >> 3) != 0; in update()
123 m_g = ((m_a & m_b) >> 3) != 0; in update()
127 m_f = m_a ^ m_b; in update()
132 m_f = m_a | m_b; in update()
[all …]
/dports/emulators/mame/mame-mame0226/src/devices/machine/
H A D74381.cpp24 , m_b(0) in sn74s381_device()
39 save_item(NAME(m_b)); in device_start()
54 m_b = 0; in device_reset()
74 m_b = data; in b_w()
103 m_f = (m_b - d) & 0xf; in update()
104 m_p = (( m_a ^ m_b) >> 3) == 0; in update()
122 m_p = ((m_a ^ m_b) >> 3) != 0; in update()
123 m_g = ((m_a & m_b) >> 3) != 0; in update()
127 m_f = m_a ^ m_b; in update()
132 m_f = m_a | m_b; in update()
[all …]
/dports/biology/abyss/abyss-2.3.1/PairedDBG/
H A DKmerPair.h39 return m_a == x.m_a && m_b == x.m_b;
53 : m_b < x.m_b;
80 return Dinuc(m_a.back(), m_b.back()); in back()
110 Kmer b(m_b); in isPalindrome()
128 s.replace(length() - m_b.length(), m_b.length(), m_b.str()); in str()
141 s += m_b.str(); in str()
149 m_b.setLastBase(sense, x.b()); in setLastBase()
157 m_b.shift(sense, x.b()));
164 m_b.reverseComplement(); in reverseComplement()
165 std::swap(m_a, m_b); in reverseComplement()
[all …]
/dports/graphics/qgis/qgis-3.22.3/external/untwine/epf/
H A DEpf.cpp163 m_b.pointSize = 0; in fillMetadata()
171 m_b.dimInfo.push_back(di); in fillMetadata()
173 m_b.offset[0] = m_b.bounds.maxx / 2 + m_b.bounds.minx / 2; in fillMetadata()
174 m_b.offset[1] = m_b.bounds.maxy / 2 + m_b.bounds.miny / 2; in fillMetadata()
175 m_b.offset[2] = m_b.bounds.maxz / 2 + m_b.bounds.minz / 2; in fillMetadata()
191 m_b.scale[0] = calcScale(m_b.scale[0], m_b.bounds.minx, m_b.bounds.maxx); in fillMetadata()
192 m_b.scale[1] = calcScale(m_b.scale[1], m_b.bounds.minx, m_b.bounds.maxx); in fillMetadata()
193 m_b.scale[2] = calcScale(m_b.scale[2], m_b.bounds.minx, m_b.bounds.maxx); in fillMetadata()
250 m_b.scale[0] = (std::max)(m_b.scale[0], m.value<double>()); in createFileInfo()
253 m_b.scale[1] = (std::max)(m_b.scale[1], m.value<double>()); in createFileInfo()
[all …]
/dports/science/cantera/cantera-2.5.1-611-gc4d6ecc15/src/thermo/
H A DPengRobinson.cpp28 m_b(0.0), in PengRobinson()
133 double denom = mv * mv + 2 * mv * m_b - m_b * m_b; in pressure()
159 double denom = 2 * M_SQRT2 * m_b * m_b; in getActivityCoefficients()
160 double denom2 = m_b * (mv * mv + 2 * mv * m_b - m_b * m_b); in getActivityCoefficients()
199 double denom = 2 * M_SQRT2 * m_b * m_b; in getChemPotentials()
200 double denom2 = m_b * (mv * mv + 2 * mv * m_b - m_b * m_b); in getChemPotentials()
240 double denom = mv * mv + 2 * mv * m_b - m_b * m_b; in getPartialMolarEnthalpies()
251 double fac3 = 2 * M_SQRT2 * m_b * m_b; in getPartialMolarEnthalpies()
302 double fac = mv * mv + 2 * mv * m_b - m_b * m_b; in getPartialMolarVolumes()
629 double denom = molarVol * molarVol + 2 * molarVol * m_b - m_b * m_b; in dpdVCalc()
[all …]
/dports/graphics/blender/blender-2.91.0/intern/ghost/intern/
H A DGHOST_Rect.cpp33 m_b += i; in inset()
48 m_b -= i; in inset()
51 m_t = m_t + ((m_b - m_t) / 2); in inset()
52 m_b = m_t; in inset()
61 bool lb = isInside(r.m_l, r.m_b); in getVisibility()
62 bool rb = isInside(r.m_r, r.m_b); in getVisibility()
71 if ((r.m_l < m_l) && (r.m_t < m_t) && (r.m_r > m_r) && (r.m_b > m_b)) { in getVisibility()
92 m_b += offset; in setCenter()
104 m_b = m_t + h; in setCenter()
122 if (r.m_b > m_b) { in clip()
[all …]
/dports/security/cryptopp/cryptopp-8.6.0/
H A Dsiphash.h109 FixedSizeSecBlock<word64, 2> m_b; variable
175 m_b[0] += 8; in Update()
189 m_b[0] += 8; in Update()
212 m_b[0] += m_idx; m_b[0] <<= 56U; in TruncatedFinal()
231 m_b[0] |= ((word64)m_acc[1]) << 8; in TruncatedFinal()
234 m_b[0] |= ((word64)m_acc[0]); in TruncatedFinal()
240 m_v[3] ^= m_b[0]; in TruncatedFinal()
245 m_v[0] ^= m_b[0]; in TruncatedFinal()
256 m_b[0] = ConditionalByteReverse(LITTLE_ENDIAN_ORDER, m_b[0]); in TruncatedFinal()
265 m_b[1] = ConditionalByteReverse(LITTLE_ENDIAN_ORDER, m_b[1]); in TruncatedFinal()
[all …]
/dports/net-p2p/qtum/qtum-mainnet-fastlane-v0.20.3/src/cryptopp/
H A Dsiphash.h108 FixedSizeSecBlock<word64, 2> m_b; variable
174 m_b[0] += 8; in Update()
188 m_b[0] += 8; in Update()
211 m_b[0] += m_idx; m_b[0] <<= 56U; in TruncatedFinal()
226 m_b[0] |= ((word64)m_acc[1]) << 8; in TruncatedFinal()
228 m_b[0] |= ((word64)m_acc[0]); in TruncatedFinal()
233 m_v[3] ^= m_b[0]; in TruncatedFinal()
238 m_v[0] ^= m_b[0]; in TruncatedFinal()
249 m_b[0] = ConditionalByteReverse(LITTLE_ENDIAN_ORDER, m_b[0]); in TruncatedFinal()
258 m_b[1] = ConditionalByteReverse(LITTLE_ENDIAN_ORDER, m_b[1]); in TruncatedFinal()
[all …]
/dports/emulators/citra-qt5/citra-ac98458e0/externals/cryptopp/cryptopp/
H A Dsiphash.h109 FixedSizeSecBlock<word64, 2> m_b; variable
175 m_b[0] += 8; in Update()
189 m_b[0] += 8; in Update()
212 m_b[0] += m_idx; m_b[0] <<= 56U; in TruncatedFinal()
231 m_b[0] |= ((word64)m_acc[1]) << 8; in TruncatedFinal()
234 m_b[0] |= ((word64)m_acc[0]); in TruncatedFinal()
240 m_v[3] ^= m_b[0]; in TruncatedFinal()
245 m_v[0] ^= m_b[0]; in TruncatedFinal()
256 m_b[0] = ConditionalByteReverse(LITTLE_ENDIAN_ORDER, m_b[0]); in TruncatedFinal()
265 m_b[1] = ConditionalByteReverse(LITTLE_ENDIAN_ORDER, m_b[1]); in TruncatedFinal()
[all …]
/dports/emulators/citra/citra-ac98458e0/externals/cryptopp/cryptopp/
H A Dsiphash.h109 FixedSizeSecBlock<word64, 2> m_b; variable
175 m_b[0] += 8; in Update()
189 m_b[0] += 8; in Update()
212 m_b[0] += m_idx; m_b[0] <<= 56U; in TruncatedFinal()
231 m_b[0] |= ((word64)m_acc[1]) << 8; in TruncatedFinal()
234 m_b[0] |= ((word64)m_acc[0]); in TruncatedFinal()
240 m_v[3] ^= m_b[0]; in TruncatedFinal()
245 m_v[0] ^= m_b[0]; in TruncatedFinal()
256 m_b[0] = ConditionalByteReverse(LITTLE_ENDIAN_ORDER, m_b[0]); in TruncatedFinal()
265 m_b[1] = ConditionalByteReverse(LITTLE_ENDIAN_ORDER, m_b[1]); in TruncatedFinal()
[all …]
/dports/sysutils/fusefs-securefs/securefs-0.12.0/external/cryptopp/
H A Dsiphash.h109 FixedSizeSecBlock<word64, 2> m_b; variable
175 m_b[0] += 8; in Update()
189 m_b[0] += 8; in Update()
212 m_b[0] += m_idx; m_b[0] <<= 56U; in TruncatedFinal()
231 m_b[0] |= ((word64)m_acc[1]) << 8; in TruncatedFinal()
234 m_b[0] |= ((word64)m_acc[0]); in TruncatedFinal()
240 m_v[3] ^= m_b[0]; in TruncatedFinal()
245 m_v[0] ^= m_b[0]; in TruncatedFinal()
256 m_b[0] = ConditionalByteReverse(LITTLE_ENDIAN_ORDER, m_b[0]); in TruncatedFinal()
265 m_b[1] = ConditionalByteReverse(LITTLE_ENDIAN_ORDER, m_b[1]); in TruncatedFinal()
[all …]
/dports/graphics/qgis/qgis-3.22.3/external/untwine/bu/
H A DBuPyramid.cpp23 BuPyramid::BuPyramid(BaseInfo& common) : m_b(common), m_manager(m_b) in BuPyramid()
29 m_b.inputDir = options.tempDir; in run()
30 m_b.outputDir = options.outputDir; in run()
31 m_b.stats = options.stats; in run()
68 pdal::BOX3D& b = m_b.bounds; in writeInfo()
76 pdal::BOX3D& tb = m_b.trueBounds; in writeInfo()
89 for (auto di = m_b.dimInfo.begin(); di != m_b.dimInfo.end(); ++di) in writeInfo()
97 out << "\"scale\": " << m_b.scale[0] << ", \"offset\": " << m_b.offset[0] << ", "; in writeInfo()
99 out << "\"scale\": " << m_b.scale[1] << ", \"offset\": " << m_b.offset[1] << ", "; in writeInfo()
101 out << "\"scale\": " << m_b.scale[2] << ", \"offset\": " << m_b.offset[2] << ", "; in writeInfo()
[all …]
/dports/audio/mixxx/mixxx-2.3.0/lib/qm-dsp/dsp/rateconversion/
H A DDecimatorB.cpp63 m_b[0] = 0.029588223638661; in initialise()
64 m_b[1] = 0.177529341831965; in initialise()
65 m_b[2] = 0.443823354579912; in initialise()
66 m_b[3] = 0.591764472773216; in initialise()
67 m_b[4] = 0.443823354579912; in initialise()
68 m_b[5] = 0.177529341831965; in initialise()
69 m_b[6] = 0.029588223638661; in initialise()
98 double output = input * m_b[0] + o[0]; in doAntiAlias()
100 o[0] = input * m_b[1] - output * m_a[1] + o[1]; in doAntiAlias()
101 o[1] = input * m_b[2] - output * m_a[2] + o[2]; in doAntiAlias()
[all …]
/dports/audio/ardour6/Ardour-6.8.0/libs/qm-dsp/dsp/rateconversion/
H A DDecimatorB.cpp63 m_b[0] = 0.029588223638661; in initialise()
64 m_b[1] = 0.177529341831965; in initialise()
65 m_b[2] = 0.443823354579912; in initialise()
66 m_b[3] = 0.591764472773216; in initialise()
67 m_b[4] = 0.443823354579912; in initialise()
68 m_b[5] = 0.177529341831965; in initialise()
69 m_b[6] = 0.029588223638661; in initialise()
98 double output = input * m_b[0] + o[0]; in doAntiAlias()
100 o[0] = input * m_b[1] - output * m_a[1] + o[1]; in doAntiAlias()
101 o[1] = input * m_b[2] - output * m_a[2] + o[2]; in doAntiAlias()
[all …]
/dports/audio/zrythm/zrythm-1.0.0-alpha.26.0.13/ext/qm-dsp/dsp/rateconversion/
H A DDecimatorB.cpp63 m_b[0] = 0.029588223638661; in initialise()
64 m_b[1] = 0.177529341831965; in initialise()
65 m_b[2] = 0.443823354579912; in initialise()
66 m_b[3] = 0.591764472773216; in initialise()
67 m_b[4] = 0.443823354579912; in initialise()
68 m_b[5] = 0.177529341831965; in initialise()
69 m_b[6] = 0.029588223638661; in initialise()
98 double output = input * m_b[0] + o[0]; in doAntiAlias()
100 o[0] = input * m_b[1] - output * m_a[1] + o[1]; in doAntiAlias()
101 o[1] = input * m_b[2] - output * m_a[2] + o[2]; in doAntiAlias()
[all …]
/dports/emulators/mess/mame-mame0226/src/devices/cpu/diablo/
H A Ddiablo1300.cpp96 , m_b(0) in diablo1300_cpu_device()
124 save_item(NAME(m_b)); in device_start()
140 m_b = 0; in device_reset()
231 m_b = 0; in execute_run()
244 m_b = 0; in execute_run()
260 m_b = read_ibus(); in execute_run()
277 m_carry = (m_a & m_b) != 0 ? 1 : 0; in execute_run()
292 m_b = 0; in execute_run()
309 m_b = 0; in execute_run()
326 m_b = 0; in execute_run()
[all …]

12345678910>>...53