Home
last modified time | relevance | path

Searched refs:det (Results 1 – 25 of 272) sorted by relevance

1234567891011

/OK3568_Linux_fs/kernel/drivers/isdn/mISDN/
H A Ddsp_ecdis.h33 echo_can_disable_detector_init(struct ec_disable_detector_state *det) in echo_can_disable_detector_init() argument
38 biquad2_init(&det->notch, in echo_can_disable_detector_init()
45 det->channel_level = 0; in echo_can_disable_detector_init()
46 det->notch_level = 0; in echo_can_disable_detector_init()
47 det->tone_present = FALSE; in echo_can_disable_detector_init()
48 det->tone_cycle_duration = 0; in echo_can_disable_detector_init()
49 det->good_cycles = 0; in echo_can_disable_detector_init()
50 det->hit = 0; in echo_can_disable_detector_init()
55 echo_can_disable_detector_update(struct ec_disable_detector_state *det, in echo_can_disable_detector_update() argument
60 notched = biquad2(&det->notch, amp); in echo_can_disable_detector_update()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/positioning/
H A Dqdoublematrix4x4.cpp89 double det; in matrixDet4() local
90 det = m[0][0] * matrixDet3(m, 1, 2, 3, 1, 2, 3); in matrixDet4()
91 det -= m[1][0] * matrixDet3(m, 0, 2, 3, 1, 2, 3); in matrixDet4()
92 det += m[2][0] * matrixDet3(m, 0, 1, 3, 1, 2, 3); in matrixDet4()
93 det -= m[3][0] * matrixDet3(m, 0, 1, 2, 1, 2, 3); in matrixDet4()
94 return det; in matrixDet4()
151 double det = matrixDet3(m, 0, 1, 2, 0, 1, 2); in inverted() local
152 if (det == 0.0) { in inverted()
157 det = 1.0 / det; in inverted()
159 inv.m[0][0] = matrixDet2(m, 1, 2, 1, 2) * det; in inverted()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/
H A Dmat4.cpp70 det = b00 * b11 - b01 * b10 + b02 * b09 + b03 * b08 - b04 * b07 + b05 * b06; in invert() local
72 if (!det) { in invert()
75 det = 1.0 / det; in invert()
77 out[0] = (a11 * b11 - a12 * b10 + a13 * b09) * det; in invert()
78 out[1] = (a02 * b10 - a01 * b11 - a03 * b09) * det; in invert()
79 out[2] = (a31 * b05 - a32 * b04 + a33 * b03) * det; in invert()
80 out[3] = (a22 * b04 - a21 * b05 - a23 * b03) * det; in invert()
81 out[4] = (a12 * b08 - a10 * b11 - a13 * b07) * det; in invert()
82 out[5] = (a00 * b11 - a02 * b08 + a03 * b07) * det; in invert()
83 out[6] = (a32 * b02 - a30 * b05 - a33 * b01) * det; in invert()
[all …]
/OK3568_Linux_fs/kernel/sound/soc/codecs/
H A D88pm860x-codec.c143 struct pm860x_det det; member
1211 mask = pm860x->det.hs_shrt | pm860x->det.hook_det | pm860x->det.lo_shrt in pm860x_component_handler()
1212 | pm860x->det.hp_det; in pm860x_component_handler()
1220 if ((pm860x->det.hp_det & SND_JACK_HEADPHONE) in pm860x_component_handler()
1224 if ((pm860x->det.mic_det & SND_JACK_MICROPHONE) in pm860x_component_handler()
1228 if (pm860x->det.hs_shrt && (shrt & (SHORT_HS1 | SHORT_HS2))) in pm860x_component_handler()
1229 report |= pm860x->det.hs_shrt; in pm860x_component_handler()
1231 if (pm860x->det.hook_det && (status & HOOK_STATUS)) in pm860x_component_handler()
1232 report |= pm860x->det.hook_det; in pm860x_component_handler()
1234 if (pm860x->det.lo_shrt && (shrt & (SHORT_LO1 | SHORT_LO2))) in pm860x_component_handler()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/qvm/detail/
H A Dcofactor_impl.hpp52 T det = determinant_impl(c); in cofactor_impl() local
54 det=-det; in cofactor_impl()
55 mat_traits<R>::write_element_idx(i,j,b) = det; in cofactor_impl()
H A Ddeterminant_impl.hpp45 T det=T(0); in determinant_impl_() local
62 det += mat_traits<M>::read_element_idx(0,j1,a) * d; in determinant_impl_()
64 return det; in determinant_impl_()
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/OpenCV-android-sdk/sdk/native/jni/include/opencv2/core/cuda/
H A Dutility.hpp179 T det = A[0][0] * A[1][1] - A[1][0] * A[0][1]; in solve2x2() local
181 if (det != 0) in solve2x2()
183 double invdet = 1.0 / det; in solve2x2()
198 T det = A[0][0] * (A[1][1] * A[2][2] - A[1][2] * A[2][1]) in solve3x3() local
202 if (det != 0) in solve3x3()
204 double invdet = 1.0 / det; in solve3x3()
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/core/cuda/
H A Dutility.hpp179 T det = A[0][0] * A[1][1] - A[1][0] * A[0][1]; in solve2x2() local
181 if (det != 0) in solve2x2()
183 double invdet = 1.0 / det; in solve2x2()
198 T det = A[0][0] * (A[1][1] * A[2][2] - A[1][2] * A[2][1]) in solve3x3() local
202 if (det != 0) in solve3x3()
204 double invdet = 1.0 / det; in solve3x3()
/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-armhf/include/opencv2/core/cuda/
H A Dutility.hpp179 T det = A[0][0] * A[1][1] - A[1][0] * A[0][1]; in solve2x2() local
181 if (det != 0) in solve2x2()
183 double invdet = 1.0 / det; in solve2x2()
198 T det = A[0][0] * (A[1][1] * A[2][2] - A[1][2] * A[2][1]) in solve3x3() local
202 if (det != 0) in solve3x3()
204 double invdet = 1.0 / det; in solve3x3()
/OK3568_Linux_fs/kernel/arch/nds32/lib/
H A Dmemmove.S17 move $r5, $r0 ! Set return value = det
18 beq $r0, $r1, exit_memcpy ! Exit when det = src
36 smw.bim $p0, [$r0], $p0 ! Copy the word to det
51 smw.adm $p0, [$r0], $p0 ! Copy the word to det
61 sb.bi $p0, [$r0], $t0 ! copy the byte to det
/OK3568_Linux_fs/kernel/arch/arm/boot/dts/
H A Drk3288-veyron-analog-audio.dtsi17 rockchip,hp-det-gpios = <&gpio6 RK_PA5 GPIO_ACTIVE_HIGH>;
18 rockchip,mic-det-gpios = <&gpio6 RK_PB3 GPIO_ACTIVE_LOW>;
76 hp_det: hp-det {
89 mic_det: mic-det {
H A Drk3308-dot-v10-aarch32.dts22 rockchip,codec-hp-det;
97 rockchip,codec-hp-det;
182 rockchip,no-hp-det;
300 rockchip,det-channel = <0>;
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/power/
H A Duniversal_charger.txt7 - dc-det-gpio: gpio for dc detect.
15 dc-det-gpio = <&gpio3 1 GPIO_ACTIVE_HIGH>;
/OK3568_Linux_fs/kernel/arch/arm64/boot/dts/rockchip/
H A Dpx30-mini-evb-v11.dtsi15 hp-det-gpio = <&gpio3 RK_PA4 GPIO_ACTIVE_LOW>;
21 hp_det: hp-det {
H A Drk3588-nvr.dtsi38 rockchip,jack-det;
48 rockchip,jack-det;
58 rockchip,jack-det;
68 rockchip,jack-det;
H A Drk3308-evb-amic-v11.dts18 rockchip,codec-hp-det;
52 rockchip,det-channel = <0>;
H A Drk3308b-evb-amic-v10.dts18 rockchip,codec-hp-det;
58 rockchip,det-channel = <0>;
H A Drk3308b-evb-amic-v10-amp.dts20 rockchip,codec-hp-det;
56 rockchip,det-channel = <0>;
/OK3568_Linux_fs/kernel/Documentation/devicetree/bindings/sound/
H A Dda7219.txt51 - dlg,mic-det-thr : Impedance threshold for mic detection measurement (Ohms)
55 - dlg,jack-det-rate: Jack type detection latency (3/4 pole)
99 dlg,mic-det-thr = <500>;
101 dlg,jack-det-rate = "32ms_64ms";
H A Dcs42l42.txt54 - cirrus,btn-det-init-dbnce : This sets how long the driver sleeps after
62 - cirrus,btn-det-event-dbnce : This sets how long the driver delays after
103 cirrus,btn-det-init-dbnce = <100>;
104 cirrus,btn-det-event-dbnce = <10>;
H A Des8316.txt8 - hp-det-gpio: headphone detect gpio
22 hp-det-gpio = <&gpio4 28 GPIO_ACTIVE_HIGH>;
H A Dalc5623.txt14 - jack-det-ctrl: Default register value for Reg-5Ah, Jack Detect
24 jack-det-ctrl = <0x4810>;
/OK3568_Linux_fs/external/xserver/debian/po/
H A Dnb.po57 "Fordi X-tjeneren kjører med priviliegier som superbruker, er det kanskje "
58 "uklokt av sikkerhetsgrunner å la alle starte den. På den annen side er det "
59 "enda mer uklokt å kjøre alminnelige X klientprogrammer som root, og det kan "
/OK3568_Linux_fs/kernel/drivers/mfd/
H A Dmax96755f.c36 u32 det; in max96755f_vid_sync_detected() local
38 if (regmap_read(max96755f->regmap, 0x55d, &det)) in max96755f_vid_sync_detected()
41 if ((!(det & VS_DET)) || (!(det & HS_DET))) in max96755f_vid_sync_detected()
/OK3568_Linux_fs/kernel/drivers/media/platform/
H A Daspeed-video.c771 struct v4l2_bt_timings *det = &video->detected_timings; in aspeed_video_get_resolution() local
773 det->width = MIN_WIDTH; in aspeed_video_get_resolution()
774 det->height = MIN_HEIGHT; in aspeed_video_get_resolution()
820 det->vfrontporch = video->frame_top; in aspeed_video_get_resolution()
821 det->vbackporch = ((mds & VE_MODE_DETECT_V_LINES) >> in aspeed_video_get_resolution()
823 det->vsync = (sync & VE_SYNC_STATUS_VSYNC) >> in aspeed_video_get_resolution()
831 det->hfrontporch = video->frame_left; in aspeed_video_get_resolution()
832 det->hbackporch = htotal - video->frame_right; in aspeed_video_get_resolution()
833 det->hsync = sync & VE_SYNC_STATUS_HSYNC; in aspeed_video_get_resolution()
845 det->height = (video->frame_bottom - video->frame_top) + 1; in aspeed_video_get_resolution()
[all …]

1234567891011