search for: transp

Displaying 20 results from an estimated 70 matches for "transp".

Did you mean: trans
2017 Jun 22
1
[PATCH v2 03/14] drm/fb-helper: do a generic fb_setcmap helper in terms of crtc .gamma_set
...- info->var.red.length); - green >>= (16 - info->var.green.length); - blue >>= (16 - info->var.blue.length); - value = (red << info->var.red.offset) | - (green << info->var.green.offset) | - (blue << info->var.blue.offset); - if (info->var.transp.length > 0) { - u32 mask = (1 << info->var.transp.length) - 1; - - mask <<= info->var.transp.offset; - value |= mask; - } - palette[regno] = value; - return 0; - } - - /* - * The driver really shouldn't advertise pseudo/directcolor - * visuals if it can't dea...
2017 Jun 22
0
[PATCH v2 03/14] drm/fb-helper: do a generic fb_setcmap helper in terms of crtc .gamma_set
...- info->var.red.length); - green >>= (16 - info->var.green.length); - blue >>= (16 - info->var.blue.length); - value = (red << info->var.red.offset) | - (green << info->var.green.offset) | - (blue << info->var.blue.offset); - if (info->var.transp.length > 0) { - u32 mask = (1 << info->var.transp.length) - 1; - - mask <<= info->var.transp.offset; - value |= mask; - } - palette[regno] = value; - return 0; - } - - /* - * The driver really shouldn't advertise pseudo/directcolor - * visuals if it can't dea...
2017 Jun 20
2
[PATCH 01/11] drm/fb-helper: do a generic fb_setcmap helper in terms of crtc .gamma_set
...- info->var.red.length); - green >>= (16 - info->var.green.length); - blue >>= (16 - info->var.blue.length); - value = (red << info->var.red.offset) | - (green << info->var.green.offset) | - (blue << info->var.blue.offset); - if (info->var.transp.length > 0) { - u32 mask = (1 << info->var.transp.length) - 1; - - mask <<= info->var.transp.offset; - value |= mask; - } - palette[regno] = value; - return 0; - } - - /* - * The driver really shouldn't advertise pseudo/directcolor - * visuals if it can't dea...
2017 Jun 21
0
[PATCH 01/11] drm/fb-helper: do a generic fb_setcmap helper in terms of crtc .gamma_set
...gt; - green >>= (16 - info->var.green.length); > - blue >>= (16 - info->var.blue.length); > - value = (red << info->var.red.offset) | > - (green << info->var.green.offset) | > - (blue << info->var.blue.offset); > - if (info->var.transp.length > 0) { > - u32 mask = (1 << info->var.transp.length) - 1; > - > - mask <<= info->var.transp.offset; > - value |= mask; > - } > - palette[regno] = value; > - return 0; > - } > - > - /* > - * The driver really shouldn't advert...
2005 Nov 22
3
loadings matrices in plsr vs pcr in pls pacakage
...the code. (?!) > sens.pcr$loadings Comp 1 Comp 2 Comp 3 Comp 4 yellow 75.186621 -0.4780473 3.212149 1.750123 green -90.490256 8.5880530 1.634961 1.042239 brown -2.861241 -11.3600509 -15.920789 -1.105799 glossy 13.347090 19.3103902 -3.121693 2.781282 transp 20.126987 24.0653312 -6.656764 -1.842907 syrup -7.199972 -5.3436196 -5.073675 5.620454 > sens.pls$loadings Loadings: Comp 1 Comp 2 Comp 3 Comp 4 yellow -74.448 -10.519 3.169 -1.056 green 88.299 21.627 -0.521 -0.976 brown 4.959 -14.253 -12.761 -0.371 glossy -15.79...
2017 Jun 22
22
[PATCH v2 00/14] improve the fb_setcmap helper
Hi! While trying to get CLUT support for the atmel_hlcdc driver, and specifically for the emulated fbdev interface, I received some push-back that my feeble in-driver attempts should be solved by the core. This is my attempt to do it right. I have obviously not tested all of this with more than a compile, but patches 1 and 3 are enough to make the atmel-hlcdc driver do what I need (when patched
2017 Jun 21
2
[PATCH 01/11] drm/fb-helper: do a generic fb_setcmap helper in terms of crtc .gamma_set
...;= (16 - info->var.green.length); >> - blue >>= (16 - info->var.blue.length); >> - value = (red << info->var.red.offset) | >> - (green << info->var.green.offset) | >> - (blue << info->var.blue.offset); >> - if (info->var.transp.length > 0) { >> - u32 mask = (1 << info->var.transp.length) - 1; >> - >> - mask <<= info->var.transp.offset; >> - value |= mask; >> - } >> - palette[regno] = value; >> - return 0; >> - } >> - >> - /* >>...
2017 Jun 22
0
[PATCH v2 01/14] drm/fb-helper: keep the .gamma_store updated in drm_fb_helper_setcmap
...u/drm/drm_fb_helper.c index a4cfef9..c7122c9 100644 --- a/drivers/gpu/drm/drm_fb_helper.c +++ b/drivers/gpu/drm/drm_fb_helper.c @@ -1330,12 +1330,16 @@ int drm_fb_helper_setcmap(struct fb_cmap *cmap, struct fb_info *info) const struct drm_crtc_helper_funcs *crtc_funcs; u16 *red, *green, *blue, *transp; struct drm_crtc *crtc; + u16 *r, *g, *b; int i, j, rc = 0; int start; if (oops_in_progress) return -EBUSY; + if (cmap->start + cmap->len < cmap->start) + return -EINVAL; + mutex_lock(&fb_helper->lock); if (!drm_fb_helper_is_bound(fb_helper)) { mutex_unlock...
2017 Jun 22
0
[PATCH v2 01/14] drm/fb-helper: keep the .gamma_store updated in drm_fb_helper_setcmap
...u/drm/drm_fb_helper.c index 574af01..25315fb 100644 --- a/drivers/gpu/drm/drm_fb_helper.c +++ b/drivers/gpu/drm/drm_fb_helper.c @@ -1223,12 +1223,16 @@ int drm_fb_helper_setcmap(struct fb_cmap *cmap, struct fb_info *info) const struct drm_crtc_helper_funcs *crtc_funcs; u16 *red, *green, *blue, *transp; struct drm_crtc *crtc; + u16 *r, *g, *b; int i, j, rc = 0; int start; if (oops_in_progress) return -EBUSY; + if (cmap->start + cmap->len < cmap->start) + return -EINVAL; + drm_modeset_lock_all(dev); if (!drm_fb_helper_is_bound(fb_helper)) { drm_modeset_unlock_all...
2008 Dec 03
2
reading version 9 SAS datasets in R
Hi, I am trying to read a SAS version 9.1.3 SAS dataset into R (to preserve the SAS labels), but am unable to do so (I have read in a CSV version). I first created a transport file using the SAS code: libname ces2 'D:\CES Analysis\Data'; filename transp 'D:\CES Analysis\Data\fadata.xpt'; /* create a transport file - R cannot read file created by proc cport */ proc cport data=ces2.fadata file=transp; run; I then tried to read it in R usin...
2006 Apr 04
0
Need help debugging (long)
...b) 37 nsteps = cd->__nsteps; (gdb) 36 srunp = cd->__steps; (gdb) 38 drunp = cd->__data; (gdb) 37 nsteps = cd->__nsteps; (gdb) 38 drunp = cd->__data; (gdb) 37 nsteps = cd->__nsteps; (gdb) 38 drunp = cd->__data; (gdb) 43 transp = drunp->__trans; (gdb) 44 while (transp != NULL) (gdb) 55 if (!(drunp->__flags & __GCONV_IS_LAST) && drunp->__outbuf != NULL) (gdb) 56 free (drunp->__outbuf); (gdb) *__GI___libc_free (mem=0x8412aa8) at malloc.c:3413 3413 { (gdb) 3417...
2002 Oct 09
0
R 1.6.0 benchmark with and without optimized ATLAS
...== note the code for the test is available on the web page (see http://www.sciviews.org/other/benchmark.htm). - R 1.6.0 with standard Rblas.dll R Benchmark =========== Number of times each test is run__________________________: 3 I. Matrix calculation --------------------- Creation, transp., deformation of a 1200x1200 matrix (sec): 0.973333333333333 1250x1250 normal distributed random matrix ^1000____ (sec): 2.25333333333333 Sorting of 1,100,000 random values__________________ (sec): 0.463333333333335 550x550 cross-product matrix (b = a' * a)___________ (sec): 0.463333333333331 L...
2017 Apr 19
2
Asterisk 1.8.32.3 : no video (h.264)
...t : No Ign SDP ver : No Trust RPID : No Send RPID : Yes TrustIDOutbnd: Legacy Subscriptions: Yes Overlap dial : No DTMFmode : rfc2833 Timer T1 : 500 Timer B : 32000 ToHost : Addr->IP : 1.1.1.1:62850 Defaddr->IP : (null) Prim.Transp. : UDP Allowed.Trsp : UDP Def. Username: 660081914 SIP Options : (none) Codecs : 0x20010a (gsm|alaw|g729|h264) Codec Order : (alaw:20,g729:20,gsm:20) Auto-Framing : No Status : OK (16 ms) Useragent : MicroSIP/3.15.1 Reg. Contact : sip:660081914 at 192.168...
2009 Nov 05
0
[PATCH] Add VirtIO Frame Buffer Support
On Mon, Nov 02, 2009 at 11:09:19PM +0100, Alexander Graf wrote: > When we want to create a full VirtIO based machine, we're still missing > graphics output. Fortunately, Linux provides us with most of the frameworks > to render text and everything, we only need to implement a transport. > > So this is a frame buffer backend written for VirtIO. Using this and my > patch to qemu, you can use paravirtualized graphics. > > This is especially important on machines that can't do MMIO, as all current > graphics implementations qemu emulates I'm aware of so...
2009 Nov 05
0
[PATCH] Add VirtIO Frame Buffer Support
On Mon, Nov 02, 2009 at 11:09:19PM +0100, Alexander Graf wrote: > When we want to create a full VirtIO based machine, we're still missing > graphics output. Fortunately, Linux provides us with most of the frameworks > to render text and everything, we only need to implement a transport. > > So this is a frame buffer backend written for VirtIO. Using this and my > patch to qemu, you can use paravirtualized graphics. > > This is especially important on machines that can't do MMIO, as all current > graphics implementations qemu emulates I'm aware of so...
2014 Jun 25
2
OPTIONS Request without username <-> Forbidden
...: No Text Support : No Ign SDP ver : No Trust RPID : No Send RPID : No Subscriptions: Yes Overlap dial : Yes DTMFmode : rfc2833 Timer T1 : 500 Timer B : 32000 ToHost : 201.217.31.10 Addr->IP : 201.217.31.10:5060 Defaddr->IP : (null) Prim.Transp. : UDP Allowed.Trsp : UDP Def. Username: 595212376458 SIP Options : timer Codecs : 0xe (gsm|ulaw|alaw) Codec Order : (ulaw:20,alaw:20,gsm:20) Auto-Framing : No Status : OK (36 ms) Useragent : Reg. Contact : Qualify Freq : 60000 ms Sess-Timers : Accept Sess...
2017 Apr 20
2
Asterisk 1.8.32.3 : no video (h.264)
...Outbnd: Legacy >> Subscriptions: Yes >> Overlap dial : No >> DTMFmode : rfc2833 >> Timer T1 : 500 >> Timer B : 32000 >> ToHost : >> Addr->IP : 1.1.1.1:62850 >> Defaddr->IP : (null) >> Prim.Transp. : UDP >> Allowed.Trsp : UDP >> Def. Username: 660081914 >> SIP Options : (none) >> Codecs : 0x20010a (gsm|alaw|g729|h264) >> Codec Order : (alaw:20,g729:20,gsm:20) >> Auto-Framing : No >> Status : OK (16 ms) >> U...
2016 Jan 21
2
NAME/USERNAME conflict
...Support : No Ign SDP ver : No Trust RPID : Yes Send RPID : No TrustIDOutbnd: Legacy Subscriptions: Yes Overlap dial : Yes DTMFmode : rfc2833 Timer T1 : 500 Timer B : 32000 ToHost : Addr->IP : 192.168.11.160:5060 Defaddr->IP : (null) Prim.Transp. : UDP Allowed.Trsp : UDP Def. Username: 199 SIP Options : path replaces replace timer Codecs : (ulaw) Codec Order : (ulaw:20) Auto-Framing : No Status : OK (28 ms) Useragent : Grandstream GXP2000 1.2.5.3 Reg. Contact : sip:101 at 192.168.11.160:5060;transport=udp...
2017 Jun 20
15
[PATCH 00/11] improve the fb_setcmap helper
Hi! While trying to get CLUT support for the atmel_hlcdc driver, and specifically for the emulated fbdev interface, I received some push-back that my feeble in-driver attempts should be solved by the core. This is my attempt to do it right. Boris and Daniel, was this approximately what you had in mind? I have obviously not tested all of this with more than a compile, but the first patch is
2011 Mar 02
1
Asterisk 1.8 SIP realtime and NAT
...No Video Support: No Text Support : No Ign SDP ver : No Trust RPID : No Send RPID : Yes Subscriptions: Yes Overlap dial : Yes DTMFmode : rfc2833 Timer T1 : 500 Timer B : 32000 ToHost : Addr->IP : x.x.x.x:5060 Defaddr->IP : (null) Prim.Transp. : UDP Allowed.Trsp : UDP Def. Username: PACK501 SIP Options : (none) Codecs : 0x10c (ulaw|alaw|g729) Codec Order : (g729:20,alaw:20,ulaw:20) Auto-Framing : No 100 on REG : Yes Status : OK (17 ms) Useragent : snom870/8.4.20 Reg. Contact : sip:501 at x.x.x.x:...