search for: hexa

Displaying 20 results from an estimated 33 matches for "hexa".

Did you mean: hex
2010 Apr 22
1
nv20tcl and renouveau questions
...or a different one. nv10 <reg32 offset="0x0208" name="RT_FORMAT" type="bitfield"> <reg32 offset="0x020c" name="RT_PITCH" type="bitfield"> <reg32 offset="0x0210" name="COLOR_OFFSET" type="hexa"/> <reg32 offset="0x0214" name="ZETA_OFFSET" type="hexa"/> nv20 <reg32 offset="0x0208" name="RT_FORMAT" type="bitfield"> <reg32 offset="0x020c" name="RT_PITCH" type="bitfield&quot...
2010 Feb 26
2
[PATCH] renouveau/nv10: remove duplicate vertex buffer registers
...igh="15" low="8" type="int"/> <bitfield name="POS_HOMOGENEOUS" high="24" low="24" type="boolean"/> </reg32> - - <reg32 offset="0x0d00" name="VERTEX_ARRAY_OFFSET_POS" type="hexa"/> - <reg32 offset="0x0d04" name="VERTEX_ARRAY_FORMAT_POS" type="bitfield"> - <bitfield name="TYPE" high="3" low="0" type="int"/> - <bitfield name="FIELDS" high="7" low=&quo...
2010 Feb 26
5
[PATCH 0/5] renouveau: nv30/nv40 unification
...inst this notion, it is easy to change the Python script that generated the unification patch and rerun it. Luca Barbieri (5): renouveau: completely describe POINT_SPRITE on nv30 and nv40 renouveau/nv40: describe CLEAR_VALUE_COLOR bitfields renouveau/nv40: set NV40TCL_LINE_STIPPLE_PATTERN to hexa like nv30 renouveau/nv30: remove clip planes #6 and #7 renouveau: unify nv30 and nv40 as NVFXTCL nvfx.py | 207 +++++++++++++ nvfx.sed | 340 ++++++++++++++++++++++ renouveau.xml | 891 ++++++++++++++++++++++----------------------------------- 3 files changed, 889 insertions(+),...
2005 Jun 09
1
Help with SOM membership
...The 8 samples have 4 controls and 4 experimentals. I transposed the matrix so that its dim are 8 x 22283, and called that "allt." Using the normalize() function from som library, I scaled the data to have mean zero and variance 1. allt.som <- som(allt, xdim=5, ydim=5, topol="hexa", neigh="bubble", alpha=1) plot(allt.som) What I cannot figure out how to do is how to determine where each sample has clustered, since the plot that i'm using does not include labels...I also tried str(allt.som) but cannot determine which attribute calls where each sample ha...
2004 Jun 16
4
Class ID limits
Hey everyone, I had a question about the class id''s using the TC command. I''m using a command that looks something like this: tc class add dev eth1 parent 10: classid 10:$variable cbq bandwidth 200Mbit rate 512Kbit allot 1514 prio 5 maxburst 20 avpkt 1000 bounded That''s just an example. My problem is I''m guessing the $variable is not allowed to be anything
2009 Apr 07
1
AEL2, BASE64_DECODE and hexadecimal
Hi, I'm trying to pass a single carriage return (0x0d in hexa) to Sendtext in an AEL2 file like this : SendText(${BASE64_DECODE(DQ==)}); Value sent (8 bytes long) is very strange : Content-Type: text/plain;charset=UTF-8 Content-Length: 8 ?ez?== Any workaround ? Regards -------------- next part -------------- An HTML attachment was scrubbed... URL: http:...
2013 Mar 31
1
Can't match DSCP CS6 and CS7
Hi, DSCP match in /tcrules/ doesn''t work with CS6 and CS7, it provides an error "invalid value" for string and hexa values. It seems that it comes from /Chain.pm/, in the function /do_dscp/: fatal_error( "Invalid DSCP ($dscp)" ) unless defined $value && $value < 0x2f && ! ( $value & 1 ); I dont understand why "$value < 0x2f", but 0x30 (CS6) and 0x38 (CS7)... Than...
2016 May 04
1
opus_encode
...byte after opus encode. below is how encoder and decoder structures are used to do encode and decode file opus_encoder_create(8000, 2, OPUS_APPLICATION_AUDIO, &err); opus_decoder_create(8000, 1, &err); after opus encode bits looks like this 00 00 00 12 31 69 52 10 08 doubts are 1)i know 12(hexa) is size of encoded frame and 08 is TOC byte, here i have doubt i am using stereo input and 20ms frame then TOC should be 0C, and 2)also about the 4 bytes after 12 -- Thanks & Regards Vittalprasad B R 8722397247
2005 Apr 06
2
Multipath routing + traffic separation problem.
Hello, I have set up a multipath gateway. System is a linux 2.4.29 kernel, iproute 20010824, iptables 1.2.11. here is the setup: firewall:/# ip rule 0: from all lookup local 100: from all lookup main 152: from all fwmark 10 lookup wan1 153: from all fwmark 20 lookup wan2 201: from 213.223.96.121 lookup wan1 202: from 82.236.230.217 lookup wan2 1000: from
2016 May 23
0
[BUG] Mismatch between assembler & disassembler of X86 RIP-relative instruction
...x32,0x54,0x76,0x01"|llvm-mc -disassemble > -triple=x86_64 -x86-asm-syntax=intel -output-asm-variant=1 --show-encoding > add qword ptr [1985229328], 1 # encoding: > [0x48,0x83,0x04,0x25,0x10,0x32,0x54,0x76,0x01] > To make it more clear, here is the same thing again, but with hexa immediate. You can see the difference in memory address: 0xba9876543210 vs 0x76543210. $ echo "ADD QWORD PTR [0xba9876543210], 0x1"|llvm-mc -assemble -triple=x86_64 -x86-asm-syntax=intel -output-asm-variant=1 --show-encoding -print-imm-hex .text add qword ptr [0xba9876543210]...
2010 Jun 24
2
[LLVMdev] How to prevent an instruction to be executed more than once?
...d code. So, I might have a BasicBlock like: BB4: call void asm "label_BB4:\0A", ""() call void asm "jmp label_BB5\0A", ""() br label %BB5 and in the generated code the br label %BB5 will actually never be reached. But I introduce the jmp in inline asm in hexa code with .byte in order to control if it is a long or a short jump and to know how many bytes to patch. I tried to keep it short, please let me know if it is not clear enough. Mainly, what I need to know statically is the beginning of the code contained in the BasicBlock BB4 and the size of jump,...
2016 May 23
2
[BUG] Mismatch between assembler & disassembler of X86 RIP-relative instruction
Hi, I found a mismatch between assembler & disassembler of X86: I assembled an instruction, then disassembled the output, but the result is not the same as the first original code: "add qword ptr [205163983024656], 1" vs " add qword ptr [1985229328], 1" Anybody knows what is wrong? Thanks. $ echo "ADD QWORD PTR [0xba9876543210], 0x1"|llvm-mc -assemble
2015 Jun 17
3
[LLVMdev] Build times on ARM
I recently got a tegra TK1 and was curious how fast it was compared to my previous arm "build machine": the original arm Samsung chromebook. I timed running ninja to build just llvm in Release+Asserts using clang as the host compiler. chromebook: real 84m30.939s user 163m50.145s sys 4m0.100s TK1: real 34m7.376s user 132m44.417s sys 3m3.543s A really nice
2002 Dec 20
2
DISASTER - Samba corrupts shared directory data - URGENTLY
...xr-x 2 root users 4096 Dec 19 10:59 10a2a2bc918bfba9c1476cf4added0c/ drwxr-xr-x 2 root users 4096 Dec 19 10:54 10aaa05c5730e583ba4c681415bfd939/ It is only a part of the directory list (it is biggest), I could observe that the generate directories are in numeric order (hexa). Was modified too the owner of the files, being that the user that take ownership doesn't was connected at moment. I could observe too that only the "public" directories was affected (directories with rx permissions for everyone). The shared directory is an ext3+lvm (in the same moun...
2013 Jan 17
0
[LLVMdev] Chromebook: floating point constant invalid for type
...this error: opt: <stdin>:56:15: error: floating point constant invalid for type store float 1.0, float* %tmpcast2, align 4 Searching the list, I found that it has to do with how LLVM represents floating points in the IR, and frankly, I'm at a loss. Above, opt seems to be requiring an hexa literal, while the error below is requiring the numeric literal: 2011-11-11-EmptyStruct.ll:10:10: error: expected string not found in input ; CHECK: ret double 1.0 ^ <stdin>:4:23: note: scanning from here define double @test() nounwind uwtable ssp { ^ <stdin...
2005 Apr 27
1
Screen fonts are too bold
Hi, How can I change the screen fonts of a program running with wine. I tried change with xwine but I can't. []'s -- Savio Martins Ramos - Arquiteto Rio de Janeiro ICQ 174972645 Pirataria n?o! Seja livre: Linux http://www.debian.org
2009 Jun 30
1
Windowing issue with diagram package & R 9.1
...rix(nrow=4,ncol=4,data=0) M[2,1]<-1 ;M[4,2]<-2;M[3,4]<-3;M[1,3]<-4 Col <- M Col[] <- "black" Col[4,2] <- "darkred" pp<-plotmat(M,pos=c(1,2,1),curve=0.2,name=names,lwd=1,box.lwd=2,cex.txt=0.8, arr.type="triangle",box.size=0.1,box.type="hexa",box.prop=0.25, arr.col=Col,arr.len=1) mtext(outer=TRUE,side=3,line=-1.5,cex=1.5,"plotmat") # par(mfrow=c(1,1)) ----------------------- --------------------- Robert W. Baer, Ph.D. Professor of Physiology Kirksville College of Osteopathic Medicne A. T. Still University of Health...
2011 Dec 28
0
Direct media path on Avaya IPOFFICE and Asterisk with H323 Trunk
...terisk send RTP stream to the IPOFFICE and not to phone directly. H323: Asterisk --> Avaya ipoffice --> phone RTP: Asterisk --> Avaya ipoffice --> phone Can you help me on this issue ? It's very important that RTP stream transit directly. Thank in advance *h323.conf* * * [ipo-hexa] type=friend host=192.168.254.200 fastStart=no context=incoming_ipo h245Tunneling=yes port=1720 ; UPDATE with appropriate port e164=101 -- Cordialement Hubert Micka?l Hexanet -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.digium.com/pipermai...
2005 Nov 24
0
Will this work?
...fic for Internet - match IP only (what is left after MAN filter) $tc filter add dev $EXT1 parent 1: protocol ip prio 0 u32 match ip src $IP flowid 1:C$hIP $tc filter add dev $INT1 parent 1: protocol ip prio 0 u32 match ip dst $IP flowid 1:C$hIP # $hIP is the last byte of the IP address, written in hexa
2006 Mar 03
3
Ajax.InPlaceEditor - disabling the yellow highlight?
Is there a way to disable Ajax.InPlaceEditor''s yellow rollover highlight?