Home
last modified time | relevance | path

Searched refs:hx (Results 1 – 21 of 21) sorted by relevance

/OK3568_Linux_fs/kernel/drivers/media/common/
H A Dcypress_firmware.c42 struct hexline *hx, int *pos) in cypress_get_hexline() argument
50 memset(hx, 0, sizeof(struct hexline)); in cypress_get_hexline()
51 hx->len = b[0]; in cypress_get_hexline()
53 if ((*pos + hx->len + 4) >= fw->size) in cypress_get_hexline()
56 hx->addr = b[1] | (b[2] << 8); in cypress_get_hexline()
57 hx->type = b[3]; in cypress_get_hexline()
59 if (hx->type == 0x04) { in cypress_get_hexline()
62 hx->addr |= (b[4] << 24) | (b[5] << 16); in cypress_get_hexline()
65 memcpy(hx->data, &b[data_offs], hx->len); in cypress_get_hexline()
66 hx->chk = b[hx->len + data_offs]; in cypress_get_hexline()
[all …]
/OK3568_Linux_fs/kernel/drivers/media/usb/dvb-usb/
H A Ddvb-usb-firmware.c39 struct hexline *hx; in usb_cypress_load_firmware() local
44 buf = kmalloc(sizeof(*hx), GFP_KERNEL); in usb_cypress_load_firmware()
47 hx = (struct hexline *)buf; in usb_cypress_load_firmware()
54 while ((ret = dvb_usb_get_hexline(fw, hx, &pos)) > 0) { in usb_cypress_load_firmware()
55 deb_fw("writing to address 0x%04x (buffer: 0x%02x %02x)\n", hx->addr, hx->len, hx->chk); in usb_cypress_load_firmware()
56 ret = usb_cypress_writemem(udev, hx->addr, hx->data, hx->len); in usb_cypress_load_firmware()
58 if (ret != hx->len) { in usb_cypress_load_firmware()
60 ret, hx->len); in usb_cypress_load_firmware()
124 int dvb_usb_get_hexline(const struct firmware *fw, struct hexline *hx, in dvb_usb_get_hexline() argument
132 memset(hx,0,sizeof(struct hexline)); in dvb_usb_get_hexline()
[all …]
H A Ddib0700_core.c509 struct hexline hx; in dib0700_download_firmware() local
518 while ((ret = dvb_usb_get_hexline(fw, &hx, &pos)) > 0) { in dib0700_download_firmware()
520 hx.addr, hx.len, hx.chk); in dib0700_download_firmware()
522 buf[0] = hx.len; in dib0700_download_firmware()
523 buf[1] = (hx.addr >> 8) & 0xff; in dib0700_download_firmware()
524 buf[2] = hx.addr & 0xff; in dib0700_download_firmware()
525 buf[3] = hx.type; in dib0700_download_firmware()
526 memcpy(&buf[4],hx.data,hx.len); in dib0700_download_firmware()
527 buf[4+hx.len] = hx.chk; in dib0700_download_firmware()
532 hx.len + 5, in dib0700_download_firmware()
H A Ddvb-usb.h501 extern int dvb_usb_get_hexline(const struct firmware *fw, struct hexline *hx, int *pos);
/OK3568_Linux_fs/kernel/arch/sh/kernel/cpu/sh2a/
H A Dfpu.c94 static int denormal_mulf(int hx, int hy) in denormal_mulf() argument
100 ix = hx & 0x7fffffff; in denormal_mulf()
103 return ((hx ^ hy) & 0x80000000); in denormal_mulf()
122 ix |= (hx ^ hy) & 0x80000000; in denormal_mulf()
161 static long long denormal_muld(long long hx, long long hy) in denormal_muld() argument
167 ix = hx & 0x7fffffffffffffffLL; in denormal_muld()
170 return ((hx ^ hy) & 0x8000000000000000LL); in denormal_muld()
195 ix |= (hx ^ hy) & 0x8000000000000000LL; in denormal_muld()
252 static int denormal_addf(int hx, int hy) in denormal_addf() argument
257 if ((hx ^ hy) & 0x80000000) { in denormal_addf()
[all …]
/OK3568_Linux_fs/kernel/drivers/isdn/hardware/mISDN/
H A DmISDNipac.c873 waitforCEC(struct hscx_hw *hx) in waitforCEC() argument
878 starb = ReadHSCX(hx, IPAC_STARB); in waitforCEC()
885 pr_debug("%s: B%1d CEC %d us\n", hx->ip->name, hx->bch.nr, in waitforCEC()
888 pr_info("%s: B%1d CEC timeout\n", hx->ip->name, hx->bch.nr); in waitforCEC()
893 waitforXFW(struct hscx_hw *hx) in waitforXFW() argument
898 starb = ReadHSCX(hx, IPAC_STARB); in waitforXFW()
905 pr_debug("%s: B%1d XFW %d us\n", hx->ip->name, hx->bch.nr, in waitforXFW()
908 pr_info("%s: B%1d XFW timeout\n", hx->ip->name, hx->bch.nr); in waitforXFW()
912 hscx_cmdr(struct hscx_hw *hx, u8 cmd) in hscx_cmdr() argument
914 if (hx->ip->type & IPAC_TYPE_IPACX) in hscx_cmdr()
[all …]
/OK3568_Linux_fs/kernel/arch/sh/kernel/cpu/sh4/
H A Dfpu.c244 unsigned int hx, hy; in ieee_fpe_handler() local
248 hx = tsk->thread.xstate->hardfpu.fp_regs[n]; in ieee_fpe_handler()
254 && (prec && ((hx & 0x7fffffff) < 0x00100000 in ieee_fpe_handler()
259 llx = ((long long)hx << 32) in ieee_fpe_handler()
267 && (!prec && ((hx & 0x7fffffff) < 0x00800000 in ieee_fpe_handler()
270 hx = float32_mul(hx, hy); in ieee_fpe_handler()
271 tsk->thread.xstate->hardfpu.fp_regs[n] = hx; in ieee_fpe_handler()
282 unsigned int hx, hy; in ieee_fpe_handler() local
286 hx = tsk->thread.xstate->hardfpu.fp_regs[n]; in ieee_fpe_handler()
292 && (prec && ((hx & 0x7fffffff) < 0x00100000 in ieee_fpe_handler()
[all …]
/OK3568_Linux_fs/buildroot/dl/sox/git/test/
H A Dcorr.c64 int hx=0,hsum=0; in main() local
148 hsum -= hist[hx]; in main()
150 hist[hx] = y; in main()
151 if (++hx == avgn) hx=0; in main()
/OK3568_Linux_fs/yocto/meta-openembedded/meta-networking/recipes-daemons/postfix/files/
H A D0002-Change-fixed-postconf-to-a-variable-for-cross-compil.patch64 - eval : \${$name=\`bin/postconf -c $CONFIG_DIRECTORY -hx $name\`} ||
65 + eval : \${$name=\`$POSTCONF -c $CONFIG_DIRECTORY -hx $name\`} ||
73 - eval : \${$name=\`bin/postconf -c conf -d -hx $name\`} || exit 1
74 + eval : \${$name=\`$POSTCONF -c conf -d -hx $name\`} || exit 1
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/earcut/0.12.4/include/mapbox/
H A Dearcut.hpp458 double hx = hole->x; in findHoleBridge() local
468 if (x <= hx && x > qx) { in findHoleBridge()
470 if (x == hx) { in findHoleBridge()
482 if (hx == qx) return m->prev; in findHoleBridge()
497 if (hx >= p->x && p->x >= mx && hx != p->x && in findHoleBridge()
498 pointInTriangle(hy < my ? hx : qx, hy, mx, my, hy < my ? qx : hx, hy, p->x, p->y)) { in findHoleBridge()
500 tanCur = std::abs(hy - p->y) / (hx - p->x); // tangential in findHoleBridge()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/earcut/
H A Dearcut.hpp488 double hx = hole->x; in findHoleBridge() local
498 if (x <= hx && x > qx) { in findHoleBridge()
500 if (x == hx) { in findHoleBridge()
512 if (hx == qx) return m; // hole touches outer segment; pick leftmost endpoint in findHoleBridge()
527 if (hx >= p->x && p->x >= mx && hx != p->x && in findHoleBridge()
528 pointInTriangle(hy < my ? hx : qx, hy, mx, my, hy < my ? qx : hx, hy, p->x, p->y)) { in findHoleBridge()
530 tanCur = std::abs(hy - p->y) / (hx - p->x); // tangential in findHoleBridge()
/OK3568_Linux_fs/yocto/poky/meta/recipes-extended/rpcsvc-proto/
H A Drpcsvc-proto.bb38 rm -rf ${D}${includedir}/rpcsvc/rquota.[hx]
/OK3568_Linux_fs/kernel/drivers/crypto/ux500/hash/
H A Dhash_alg.h182 u32 hx[8]; member
H A Dhash_core.c1289 temp_hx_val = readl_relaxed(&device_data->base->hx[count]); in hash_get_digest()
/OK3568_Linux_fs/external/security/rk_tee_user/v2/host/xtest/
H A Dregression_4100.c2412 uint32_t hx = TA_CRYPT_ARITH_INVALID_HANDLE; in test_4114_gcd() local
2420 if (!ADBG_EXPECT_TEEC_SUCCESS(c, cmd_new_var(c, s, 2048, &hx))) in test_4114_gcd()
2435 if (!ADBG_EXPECT_TEEC_SUCCESS(c, convert_from_string(c, s, strx, hx))) in test_4114_gcd()
2442 cmd_compute_egcd(c, s, hx, hy, ha, hb, hgcd))) in test_4114_gcd()
2445 if (!ADBG_EXPECT_TEEC_SUCCESS(c, cmd_compute_gcd(c, s, hx, hy, ht1))) in test_4114_gcd()
2452 if (!ADBG_EXPECT_TEEC_SUCCESS(c, cmd_mul(c, s, ha, hx, ht1))) in test_4114_gcd()
2466 ADBG_EXPECT_TEEC_SUCCESS(c, cmd_free_handle(c, s, hx)); in test_4114_gcd()
/OK3568_Linux_fs/kernel/drivers/pinctrl/nomadik/
H A Dpinctrl-nomadik-db8500.c905 DB8500_FUNC_GROUPS(hx, "hxclk_oc1_1", "hxgpio_oc1_1");
964 FUNCTION(hx),
/OK3568_Linux_fs/kernel/drivers/net/wireless/ath/ath9k/
H A Dar9003_eeprom.c4274 int hx = 0, hy = 0, hhave = 0; in ar9003_hw_power_interpolate() local
4287 if (!hhave || dx > (x - hx)) { in ar9003_hw_power_interpolate()
4289 hx = px[ip]; in ar9003_hw_power_interpolate()
4310 if (hx == lx) in ar9003_hw_power_interpolate()
4313 y = interpolate(x, lx, hx, ly, hy); in ar9003_hw_power_interpolate()
/OK3568_Linux_fs/recovery/
HDrootfs.cpio.gz107070100A8AEB0000041ED0000000000000000000000116841B48100000000000000FD0000000200000000000000000000000200000000.�07070100A8B07C000081A40000000000000000000000016841263500000000000000FD0000000200000000000000000000000900000000.gitkeep��07070100A8B07D000081A40000000000000000000000016841263500000000000000FD0000000200000000000000000000000B00000000.skip_fsck����07070100A8AEB10000A1FF0000000000000000000000016841B0B600000007000000FD0000000200000000000000000000000400000000bin���usr/bin�07070100A8B07E000081A400000000000000000000000168412635000001CC000000FD0000000200000000000000000000001100000000busybox. ...
/OK3568_Linux_fs/device/rockchip/common/images/userdata/userdata_normal/media/
H A Dyuv420_p352x288.yuv59hx����ο��������������������}������Է��������½�����������������������������������������dXn���������…
320 …�����������������}��z�������������ɫ���������������������������������y@c���{hx���������������������…
552 …A?><:;9::8;;<=;9652/3322532223435436556;74.);<<�q�v|���������������qg`Y[hx|m]Z\^cgksz~~{{z|��…
628 …���������������������������������������������������������������������������hx���������������������…
648 …������������}~~�~}}~w}�urupkkklmmnnmkjkllkklklmlkkklmmmnnlmqw}}}hx���������������������…
903 …DGLKGC?;4.0236:==>=:8545654456546434224300# h����������~{P$*)<hx||w}ubUYi}�jlfZpX+&5F…
1134 …77778757963566676776777855662$IYj{�w����������������Ӵqz����������siaVPS]hx�����{mz�tb[indWOPQ…
1166 …-/0.///0//1001224'I}4-K("i�|}z|��������veXC2/59Hey�������������vk]F2,3<CIP\hx�����~ytrpoldgmjkie]…
1289 …D@=;63211478<>=95556545556634424654310&�a��������zz����ujc]^hxnabfjpz~~�ztoiis}��…
1559 …���������������������������������������������������������������������������hx�ɿ���������������p3Jg…
[all …]
/OK3568_Linux_fs/buildroot/dl/unixbench/git/UnixBench/testdir/
H A Dlarge.txt5903 read(5, "7*\37\244uR\313\221h\310\215b\303\216hx^K0\'\37\17\r\n\2\2\2\2\2\2\n\7"..., 11904) = 11904
/OK3568_Linux_fs/external/xserver/
H A DChangeLog92214 ErrorF("%02hx ", *data);