/Linux-v4.19/arch/x86/math-emu/ |
D | poly_sin.c | 61 Xsig accumulator, argSqrd, argTo4; in poly_sine() local 68 accumulator.lsw = accumulator.midw = accumulator.msw = 0; in poly_sine() 86 polynomial_Xsig(&accumulator, &XSIG_LL(argTo4), neg_terms_l, in poly_sine() 88 mul_Xsig_Xsig(&accumulator, &argSqrd); in poly_sine() 89 negate_Xsig(&accumulator); in poly_sine() 91 polynomial_Xsig(&accumulator, &XSIG_LL(argTo4), pos_terms_l, in poly_sine() 94 shr_Xsig(&accumulator, 2); /* Divide by four */ in poly_sine() 95 accumulator.msw |= 0x80000000; /* Add 1.0 */ in poly_sine() 97 mul64_Xsig(&accumulator, &significand(st0_ptr)); in poly_sine() 98 mul64_Xsig(&accumulator, &significand(st0_ptr)); in poly_sine() [all …]
|
D | poly_l2.c | 30 Xsig accumulator, expon_accum, yaccum; in poly_l2() local 55 accumulator.msw = accumulator.midw = accumulator.lsw = 0; in poly_l2() 57 log2_kernel(&x, argsign, &accumulator, &expon); in poly_l2() 69 shr_Xsig(&accumulator, expon_expon - expon); in poly_l2() 72 negate_Xsig(&accumulator); in poly_l2() 73 add_Xsig_Xsig(&accumulator, &expon_accum); in poly_l2() 81 mul_Xsig_Xsig(&accumulator, &yaccum); in poly_l2() 83 expon_expon += round_Xsig(&accumulator); in poly_l2() 85 if (accumulator.msw == 0) { in poly_l2() 90 significand(st1_ptr) = XSIG_LL(accumulator); in poly_l2() [all …]
|
D | poly_atan.c | 58 Xsig accumulator, Numer, Denom, accumulatore, argSignif, argSq, argSqSq; in poly_atan() local 151 accumulator.msw = accumulator.midw = accumulator.lsw = 0; in poly_atan() 152 polynomial_Xsig(&accumulator, &XSIG_LL(argSqSq), in poly_atan() 154 mul64_Xsig(&accumulator, &XSIG_LL(argSq)); in poly_atan() 155 negate_Xsig(&accumulator); in poly_atan() 156 polynomial_Xsig(&accumulator, &XSIG_LL(argSqSq), oddnegterms, in poly_atan() 158 negate_Xsig(&accumulator); in poly_atan() 159 add_two_Xsig(&accumulator, &fixedpterm, &dummy_exp); in poly_atan() 165 div_Xsig(&accumulator, &accumulatore, &accumulator); in poly_atan() 167 mul_Xsig_Xsig(&accumulator, &argSignif); in poly_atan() [all …]
|
D | poly_2xm1.c | 57 Xsig accumulator, Denom, argSignif; in poly_2xm1() local 94 accumulator.lsw = accumulator.midw = accumulator.msw = 0; in poly_2xm1() 95 polynomial_Xsig(&accumulator, &Xll, lterms, HIPOWER - 1); in poly_2xm1() 96 mul_Xsig_Xsig(&accumulator, &argSignif); in poly_2xm1() 97 shr_Xsig(&accumulator, 3); in poly_2xm1() 100 add_two_Xsig(&accumulator, &argSignif, &exponent); in poly_2xm1() 106 shr_Xsig(&accumulator, -exponent); in poly_2xm1() 107 accumulator.msw |= 0x80000000; /* add 1.0 */ in poly_2xm1() 108 mul_Xsig_Xsig(&accumulator, shiftterm[shift]); in poly_2xm1() 109 accumulator.msw &= 0x3fffffff; /* subtract 1.0 */ in poly_2xm1() [all …]
|
/Linux-v4.19/drivers/power/supply/ |
D | cpcap-battery.c | 86 s32 accumulator; member 216 u32 sample, s32 accumulator, in cpcap_battery_cc_raw_div() argument 238 acc = accumulator; in cpcap_battery_cc_raw_div() 259 u32 sample, s32 accumulator, in cpcap_battery_cc_to_uah() argument 263 accumulator, offset, in cpcap_battery_cc_to_uah() 268 u32 sample, s32 accumulator, in cpcap_battery_cc_to_ua() argument 272 accumulator, offset, in cpcap_battery_cc_to_ua() 300 ccd->accumulator = 0; in cpcap_battery_read_accumulated() 314 ccd->accumulator = ((s16)buf[3]) << 16; in cpcap_battery_read_accumulated() 315 ccd->accumulator |= buf[2]; in cpcap_battery_read_accumulated() [all …]
|
/Linux-v4.19/Documentation/devicetree/bindings/soc/ti/ |
D | keystone-navigator-qmss.txt | 55 - accumulator : pool of queues on PDSP accumulator channel 64 -- accumulator : Accumulator channel specification. Any of the PDSPs in 65 QMSS can be loaded with the accumulator firmware. The 66 accumulator firmware’s job is to poll a select number of 71 accumulator triggers an interrupt to the host to read 77 pdsp-id : QMSS PDSP running accumulator firmware 81 entries : Size of the accumulator descriptor list 188 accumulator { 191 accumulator = <0 36 16 2 50>; 198 accumulator = <0 37 16 2 50>; [all …]
|
/Linux-v4.19/Documentation/arm/keystone/ |
D | knav-qmss.txt | 31 The QMSS PDSP firmware support accumulator channel that can monitor a single 33 driver that interface with the accumulator PDSP. This configures 34 accumulator channels defined in DTS (example in DT documentation) to monitor 39 k2_qmss_pdsp_acc48_k2_le_1_0_0_9.bin firmware supports upto 48 accumulator
|
/Linux-v4.19/lib/lz4/ |
D | lz4_compress.c | 440 size_t accumulator = lastRun - RUN_MASK; in LZ4_compress_generic() local 442 for (; accumulator >= 255; accumulator -= 255) in LZ4_compress_generic() 444 *op++ = (BYTE) accumulator; in LZ4_compress_generic() 702 size_t accumulator = lastRunSize - RUN_MASK; in LZ4_compress_destSize_generic() local 705 for (; accumulator >= 255; accumulator -= 255) in LZ4_compress_destSize_generic() 707 *op++ = (BYTE) accumulator; in LZ4_compress_destSize_generic()
|
/Linux-v4.19/Documentation/sound/cards/ |
D | audigy-mixer.rst | 63 This control is used to attenuate samples for center PCM FX-bus accumulator. 64 ALSA uses accumulator 6 for center PCM sample for 5.1 playback. The result sample 69 This control is used to attenuate sample for LFE PCM FX-bus accumulator. 70 ALSA uses accumulator 7 for LFE PCM sample for 5.1 playback. The result sample 83 accumulator. ALSA uses accumulators 0 and 1 for left and right PCM. 96 accumulator. ALSA uses accumulators 4 and 5 for left and right PCM. 268 Don't forget that it's illegal to assign a channel to the same FX-bus accumulator
|
D | sb-live-mixer.rst | 92 accumulator. ALSA uses accumulators 0 and 1 for left and right PCM. 105 accumulator. ALSA uses accumulators 4 and 5 for left and right PCM. 125 This control is used to attenuate sample for center PCM FX-bus accumulator. 126 ALSA uses accumulator 6 for center PCM sample. The result sample is forwarded 131 This control is used to attenuate sample for center PCM FX-bus accumulator. 132 ALSA uses accumulator 6 for center PCM sample. The result sample is forwarded 287 Don't forget that it's illegal to assign a channel to the same FX-bus accumulator
|
/Linux-v4.19/arch/arm/boot/dts/ |
D | keystone-k2l-netcp.dtsi | 72 accumulator { 75 accumulator = <0 47 16 2 50>;
|
D | keystone-k2e-netcp.dtsi | 72 accumulator { 75 accumulator = <0 47 16 2 50>;
|
D | keystone-k2hk-netcp.dtsi | 89 accumulator { 92 accumulator = <0 47 16 2 50>;
|
/Linux-v4.19/drivers/scsi/aic7xxx/aicasm/ |
D | aicasm_gram.y | 77 static symbol_ref_t accumulator; variable 368 | accumulator 550 accumulator: 553 if (accumulator.symbol != NULL) { 558 accumulator.symbol = cur_symbol; 921 if (accumulator.symbol == NULL) { 925 $$.symbol = accumulator.symbol; 959 symlist_add(&$$.referenced_syms, accumulator.symbol,
|
/Linux-v4.19/drivers/staging/iio/Documentation/ |
D | sysfs-bus-iio-dds | 41 accumulator output by writing Y to the phase_en file. 57 accumulator output. The value corresponds to the Y in
|
/Linux-v4.19/Documentation/hwmon/ |
D | fam15h_power | 56 * Tsample: compute unit power accumulator sample period 59 * N: the ratio of compute unit power accumulator sample period to the
|
/Linux-v4.19/arch/m68k/fpsp040/ |
D | decbin.S | 134 | (*) d1: accumulator for binary exponent 151 clrl %d1 |zero d1 for accumulator 478 | (*) fp0: mantissa accumulator
|
/Linux-v4.19/arch/arc/ |
D | Kconfig | 418 Depending on the configuration, CPU can contain accumulator reg-pair
|
/Linux-v4.19/scripts/ |
D | spelling.txt | 55 acumulator||accumulator
|
/Linux-v4.19/drivers/scsi/aic7xxx/ |
D | aic7xxx.reg | 660 accumulator
|
D | aic79xx.reg | 3485 accumulator
|
/Linux-v4.19/Documentation/sound/kernel-api/ |
D | writing-an-alsa-driver.rst | 2178 :c:func:`snd_pcm_period_elapsed()` and reset the accumulator. 2208 /* reset the accumulator */
|
/Linux-v4.19/Documentation/networking/ |
D | filter.txt | 183 A 32 bit wide accumulator
|