Home | History | Annotate | Download | only in F_kernel_static
      1 #pragma version(1)
      2 #pragma rs java_package_name(foo)
      3 
      4 static int gi;
      5 
      6 static void not_a_kernel(int i) {
      7     static int j;
      8     int k;
      9     j = i;
     10 }
     11 
     12 int __attribute__((kernel)) root(uint32_t ain) {
     13   static const int ci;
     14   static int i;
     15   return 0;
     16 }
     17 
     18 static int __attribute__((kernel)) static_kernel() {
     19   return 0;
     20 }
     21