search for: printint

Displaying 10 results from an estimated 10 matches for "printint".

Did you mean: printing
2008 Dec 24
2
Using 'cat' on data frame
Dear all, I have the following data frame: > raw.count Var1 Freq 1 AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA 707 2 AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAC 14 3 AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAT 3 But why when printint it using 'cat', it doesn't print the desired string "AAA" ? > cat(raw.count$Var1, "\n") 1 2 3 What's wrong with my cat command above. - Gundala Viswanath
2010 Oct 04
0
[LLVMdev] LLVM ERROR: Program used external function 'printd' which could not be resolved!
...ist (of which the executable is part of), and returns a handle to it. GetProcAddress operates on that handle to return a function pointer. For example, from within the executable itself, if you want to link in something that is exported from itself, you can do this: export "C" { void printInt(int i) { printf("%i", i); } typedef void(*printIntType)(int); } int main(void) { HMODULE self = GetModuleHandle(0); printIntType printIntPtr = (AddFunc)GetProcAddress(self, "printInt"); (*printIntPtr)(42); } And if you want to check for something exported from any cur...
2010 Oct 04
1
[LLVMdev] LLVM ERROR: Program used external function 'printd' which could not be resolved!
>>> Any help will be much appreciated. Thanks! >> Windows does not support dynamic linking. You will need to resolve >> externals by hand. > > Why would it not support dynamic linking?  What about loadlibrary and > its kin are not sufficient to handle this? Well, you cannot easily export stuff from an executable and this is the main issue here. (And you cannot e.g.
2010 Oct 02
4
[LLVMdev] LLVM ERROR: Program used external function 'printd' which could not be resolved!
Hi Buit the Kaleidoscope example under MinGW and everything runs fine except when I try the following example in Chapter 6: extern printd(x); printd(123); where printd is the library function defined in C as extern "C" double printd(double X) { printf("%f\n", X); return 0; } The error message is: LLVM ERROR: Program used external function
2007 Apr 11
3
Problems sharing HP Officejet 6210 Linux --> XP
...PC and install the drivers from the Printer CD. Then plug the printer back into the linux server. At this point 2 techniques were suggested, neither of which worked for me: 2a. Go back to the wizard and install the remote printer, using the correct driver this time. This apparantly succeeds, but printint the test page fails with an uninformative popup inviting me to go to the troubleshooting wizard (which is equally unhelpful). or 2b. Hack the local printer configuration by going to properties-->ports and creating a Local port with the value \\<servername>\<printername>, as shared...
2009 Jun 20
0
[LLVMdev] How to call C++ code from LLVM
...p/ccLAh0mg.o: In function `main': asd.bc:(.text+0xd): undefined reference to `printString' collect2: ld returned 1 exit status in .bc file i have something like that: ; ModuleID = 'xyz' internal constant [5 x i8] c"ello\00" ; <[5 x i8]*>:0 [#uses=1] declare void @printInt(i32) define i32 @main() { entry: call void @printString(i8* getelementptr ([5 x i8]* @0, i32 0, i32 0)) %tmpvar = alloca i32 ; <i32*> [#uses=2] store i32 0, i32* %tmpvar %tmpvar1 = load i32* %tmpvar ; <i32> [#uses=1] ret i32 %tmpvar1 } ///////////////////////////// Second possi...
2009 Jun 19
0
[LLVMdev] How to call C++ code from LLVM
On Thu, Jun 18, 2009 at 3:57 PM, Jules Jacobs<julesjacobs at gmail.com> wrote: > How can I call C++ libraries (LLVM & Qt for example) from a language that's > implemented on top of LLVM? You can call them the same way a C++ file compiled with llvm-g++ would call them. Essentially, it's complicated enough that you probably don't want to do it for any interface of
2009 Jun 18
3
[LLVMdev] How to call C++ code from LLVM
Hi, How can I call C++ libraries (LLVM & Qt for example) from a language that's implemented on top of LLVM? Thanks, Jules -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20090619/4621508b/attachment.html>
2003 Dec 01
0
No subject
...**************************************** + toggle hash mark printing during transfers. + ****************************************************************************/ +static void cmd_hash(void) +{ + hash = !hash; + if (hash && tick) + cmd_tick(); + + DEBUG(2,("Hash mark printint %s", hash ? "on" : "off" )); + if (hash) + DEBUG(2,(" (%d bytes/hash mark)", HASHBYTES)); + DEBUG(2,("\n")); +} + +/**************************************************************************** + toggle printing byte counter during transfers +...
2003 Dec 01
0
No subject
...********************************************** + toggle hash mark printing during transfers. + ****************************************************************************/ +static void cmd_hash(void) +{ + hash = !hash; + if (hash && tick) + cmd_tick(); + + DEBUG(2,("Hash mark printint %s", hash ? "on" : "off" )); + if (hash) + DEBUG(2,(" (%d bytes/hash mark)", HASHBYTES)); + DEBUG(2,("\n")); +} + +/**************************************************************************** + toggle printing byte counter during transfers + *****...