search for: 8bit

Displaying 20 results from an estimated 567 matches for "8bit".

2009 Nov 02
5
Working round 'invalid byte sequence'
I am a very amateur Rubyist who, amongst other things, likes to use a simple Rails app to query my company''s MySQL config database. The server I now use to do this has got 1.9.1 and Rails 2.3.3. I''ve now hit the ''problems'' related to 1.9 and string encoding, which means that when Rails try to display, say, E acute characters, it throws an invalid byte
2005 Mar 14
1
When decrypt using SPEEXDEC it's impossible decrypt to 8bit, the only way is 16bit.
Dear speex developer, I have a problem: I use SPEEXENC on my mono 8bit 11024 Khz Wav - works OK When decrypt using SPEEXDEC it's impossible decrypt to 8bit, the only way is 16bit. Is there any help? Thank you Rosta Janca -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.xiph.org/pipermail/speex-d...
2010 Oct 19
2
Tif image to 8bit colour matrix.
Dear listers, I have a collection of tif images that I would like to convert, in R, to a matrix containing the values of the 8bit colour. Ideally, I would like a matrix for each of the colour channels (red, blue and green). I have 'googled' and searched the help list but have yet to find a solution and hope that someone can point me in the right direction. I currently use subscription software (Igor) for the conve...
2009 May 12
0
dovecot bug (maybe)
...strange, when it founds a 'corrupted' multipart and using fetch body. Look what I figured out: 1) Sent a message from squirrelmail (it wrongly drop the last \n from epilogue): ------=_20090512171902_78105 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 8bit n ------=_20090512171902_78105 Content-Type: text/html; charset="iso-8859-1" Content-Transfer-Encoding: 8bit n <--------(squirrelmail didn?t insert an additional \n). ------=_20090512171902_78105-- 2) Sent a correct message, inserting the last '\n': ------=_200905121...
2013 Sep 06
2
[LLVMdev] removing unnecessary ZEXT
Hi, Within a basic block I can remove unnecessary register copies + zero sign extensions of unsigned-8bit-loaded values by implementing isZExtFree() for ISD::LOAD nodes. ...But not between basic blocks. The first block does a CopyFromReg of the unsigned-8bit-loaded vreg1 into a new vreg2. The second block then does a unnecessary zext to vreg2. What I want is the 2nd block to use the original vreg1! Wh...
2016 Sep 20
2
-sanitizer-coverage-prune-blocks=true and LibFuzzer
...(commit <https://github.com/llvm-mirror/llvm/commit/f593646d9ade6ab311cd6c55880bf3bdfc4b26a4> ). Here are the numbers from running the fuzzer with different options for a fixed amount of time. #units #blocks #bits options 492 447 1666 -fsanitize-coverage=edge,indirect-calls,8bit-counters -mllvm -sanitizer-coverage-prune-blocks=false 135 447 754 -fsanitize-coverage=edge -mllvm -sanitizer-coverage-prune-blocks=false 58 103 185 -fsanitize-coverage=edge,indirect-calls,8bit-counters 135 447 754 -fsanitize-coverage=edge Here, units is the num...
2013 Sep 10
0
[LLVMdev] removing unnecessary ZEXT
Hi, A bit more information. I believe my problem lies with the fact that the load is left as 'anyext from i8'. On the XCore target we know this will become an 8bit zext load - as there is no 8bit sign extended load! If BB#1 were to force the load to a "zext from i8" would this information be available in BB#2? BB#1: 0x268c1b0: i32 = Register %vreg1 [ID=3] 0x2689d80: i32,ch = load 0x265d380, 0x2689f80, 0x268b9b0<LD1[%s2], anyext from i8&g...
2017 Sep 15
2
Question about 'DAGTypeLegalizer::SplitVecOp_EXTRACT_VECTOR_ELT'
> extends the elements to 8bit and stores them on stack. Store is responsible for zero-extend. This is the policy... - Elena -----Original Message----- From: jingu at codeplay.com [mailto:jingu at codeplay.com] Sent: Friday, September 15, 2017 17:45 To: llvm-dev at lists.llvm.org; Demikhovsky, Elena <elena.demikhovsky at...
2009 Nov 23
0
[LLVMdev] New 8bit micro controller back-end
...port that can be useful to you as well. Regards Ali ________________________________ From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] On Behalf Of Guillaume Deroire Sent: Monday, November 23, 2009 6:46 AM To: LLVM Developers Mailing List Subject: [LLVMdev] New 8bit micro controller back-end Hi all, I'm new to LLVM dev mailling list and I'm starting to discover some aspects of LLVM. Actually I'm looking for a solution to create a tool chain for my own chip (a 8bit micro controller processor) that include a compiler/linker/assembler toolset an...
2017 Sep 14
2
Question about 'DAGTypeLegalizer::SplitVecOp_EXTRACT_VECTOR_ELT'
...setcc t17, t18, setne:ch t20: i1 = xor t16, t19 ... I have not added any vector register class so 'DAGTypeLegalizer' tries to split the "t16: i1 = extract_vector_elt t13, t15" because t13's result type is 'v2i1'. If the size of vector element is less than 8bit, 'DAGTypeLegalizer::SplitVecOp_EXTRACT_VECTOR_ELT()' function extends the elements to 8bit and stores them on stack. Finally, the function generates 'ExtLoad' to load specific element. But if the element's size is less than 8bit, I think it could be wrong. It looks it needs...
2012 Feb 05
2
Sieve notify messages
Hi All I'm using dovecot 2.0.16 with the pigeonhole plugin 0.25. I'm trying to use the notifiy mechanism from sieve to send notifications when a mail arrives in the mailbox. The message is checked to be a 8bit message, otherwise it is replaced by the default message "Notification of new message." How can I create a 8bit message body within the sieve script that is accepted by the notification process? e.g. notify :message "Subject: ${subject}" "mailto:email at domai...
2009 Nov 23
5
[LLVMdev] New 8bit micro controller back-end
Hi all, I'm new to LLVM dev mailling list and I'm starting to discover some aspects of LLVM. Actually I'm looking for a solution to create a tool chain for my own chip (a 8bit micro controller processor) that include a compiler/linker/assembler toolset and a simulator/debugger. >From what I've read, LLVM is a good tool to implement a compiler for this proprietary platform, but I have the following questions: - Is there estimation (from your experiences) of the wo...
2017 Sep 17
2
Question about 'DAGTypeLegalizer::SplitVecOp_EXTRACT_VECTOR_ELT'
...ng load generates assertion after the store because MemVT is i8 and VT is i1 on following line. assert(MemVT.getScalarType().bitsLT(VT.getScalarType()) && "Should only be an extending load, not truncating!") so I think we need to use non-extending load for element size less than 8bit on "DAGTypeLegalizer::SplitVecOp_EXTRACT_VECTOR_ELT" like this roughly. if (N->getOperand(0).getValueType().getVectorElementType().getSizeInBits() < 8) { return DAG.getLoad(N->getValueType(0), dl, Store, StackPtr, MachinePointerInfo()); } else { return DAG.getExtLoad(ISD::EX...
2013 Jul 02
0
incompatible character encodings: UTF-8 and ASCII-8BIT
...etails to the SQL (these come from a hiera json file created from PHP) before using that file to create the database. If that data includes UTF-8 characters (for example an e with an acute accent) we get the error: Failed to parse template Detail: incompatible character encodings: UTF-8 and ASCII-8BIT This looks to be a similar issue to: https://groups.google.com/forum/#!topic/puppet-bugs/oWATlkm5nfo Debian Wheezy, Puppet v3.2.2, Ruby 1.9.3p194 Any suggestions as to how to deal with this would be great! Rachel -- You received this message because you are subscribed to the Google Groups &q...
2014 Nov 19
0
incompatible character encodings: ASCII-8BIT and UTF-8
Hi, I have problem with showing some string in my site with Rails 4 I get this message: incompatible character encodings: ASCII-8BIT and UTF-8 concerning this html sequence in an erb file: <h3><%= MyString.to_s.force_encoding("UTF-8") %></h3> I get this problem only on *production server,* but I do not have the problem on my local computer What can I do with this problem regards, -- You receive...
2014 Aug 09
0
Converting maildir files from quoted-printable to 8bit
How to easily convert maildir files from (single part) quoted-printable to 8bit encoding? [I would like to ease access to sent/posted archives.]
2012 Jan 27
2
dealing with Encoding::UndefinedConversionError: "\xA2" from ASCII-8BIT to UTF-8
...;'m supposed to fork and add the current master version from github to my config, but I need simple little steps for muddy little feet.) Thanks... I''m running Rails 3.2, Mechanize 2.1. Mechanize is failing with Encoding::UndefinedConversionError: "\xA2" from ASCII-8BIT to UTF-8 with this (partial) stack trace: from /app/vendor/bundle/ruby/1.9.1/gems/mechanize-2.1/lib/mechanize/http/agent.rb:807:in `block in response_read'' from /usr/local/lib/ruby/1.9.1/net/protocol.rb:387:in `call_block'' from /usr/local/lib/ruby/1.9.1/net/protocol.rb:378:in `&...
2017 Sep 18
1
Question about 'DAGTypeLegalizer::SplitVecOp_EXTRACT_VECTOR_ELT'
> so I think we need to use non-extending load for element size less than 8bit on "DAGTypeLegalizer::SplitVecOp_EXTRACT_VECTOR_ELT" like this roughly. > if (N->getOperand(0).getValueType().getVectorElementType().getSizeInBits() < 8) { > return DAG.getLoad(N->getValueType(0), dl, Store, StackPtr, MachinePointerInfo()); > } else { > return DA...
2009 Mar 21
15
mysql encoding with rails 2.3.2 and ruby 1.9.1
when I run console with ruby 1.9.1 and rails 2.3.2, and trying to do something like User.first.name.encoding I''m getting #<Encoding:ASCII-8BIT>, though I''ve set "encoding: utf8" in database.yml any suggestions? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rub...
2016 Sep 21
2
-sanitizer-coverage-prune-blocks=true and LibFuzzer
...gt; > I can reproduce this too, but if i either increase FUZZER_TESTING_SECONDS to 600 or change seed=1 to seed=2 the problem is gone. > Looks like one of the binaries got simply unlucky with a particular seed. > You can observe it like this: > for S in 1 2 3 4 5 6; do ./target-asan-8bit-prune-build/fuzzer -seed=$S -runs=10000000 2>&1 | grep DONE & done > #10000000 DONE cov: 60 bits: 91 indir: 1 units: 59 exec/s: 625000 > #10000000 DONE cov: 60 bits: 91 indir: 1 units: 57 exec/s: 588235 > #10000000 DONE cov: 253 bits: 901 indir: 12 unit...