search for: a_struct

Displaying 2 results from an estimated 2 matches for "a_struct".

Did you mean: _struct
2005 Apr 22
1
Beginner in R
...my_struct$b <- another_value my_struct$c <- one_more_value and a function with two args : the first is a instance of the structure, and the second is any component of the structure (here $a, $b or $c) and the function will do some transformations on this component : my_func <- function(a_struct, a_comp) { a_comp <- transformationFunct(a_comp) a_result <- someComputation(a_struct) return(a_result) } In reallity, the structure have lot of components (+/- 40) who are input parameters for a time discret model and this function is to do selective sensitivity ana...
2009 Jan 15
2
[LLVMdev] Testcase for OS kernel
...s, Keun Soo ----- /* * @title A Testcase for LLVM * * @about This faces an error with LLVM 2.4 (but not with GCCC) * The error messsage is ... * Couldn't allocate output reg for constraint 'A'! * * @author Keun Soo Yim */ struct a_struct{ unsigned int a,b; }; void x() { long err; struct a_struct a; struct a_struct *pa; __asm__ __volatile__( "1: movl 0(%2),%%eax\n" "2: movl 4(%2),%%edx\n" "3:\n" ".section .fixup,\"ax\&quo...