Searched refs:ary (Results 1 - 25 of 26) sorted by relevance

12

/external/clang/test/Parser/
H A Dtypeof.c13 void ary[7] fff; // expected-error{{array has incomplete element type 'void'}} expected-error{{expected ';' at end of declaration}}
14 typeof(void ary[7]) anIntError; // expected-error{{expected ')'}} expected-note {{to match this '('}} expected-error {{variable has incomplete type 'typeof(void)' (aka 'void')}}
H A Dbuiltin_classify_type.c11 static int ary[__builtin_classify_type(a)]; local
/external/selinux/libselinux/src/
H A Dcompute_user.c16 char **ary; local
54 ary = malloc((nel + 1) * sizeof(char *));
55 if (!ary) {
62 ary[i] = strdup(ptr);
63 if (!ary[i]) {
64 freeconary(ary);
70 ary[nel] = NULL;
71 *con = ary;
/external/clang/test/Sema/
H A Dincomplete-decl.c15 int ary[]; // expected-warning {{tentative array definition assumed to have one element}} variable
19 int ary[]; // expected-error{{definition of variable with array type needs an explicit size or an initializer}} local
H A Darray-init.c9 static int ary[] = { x, y, z }; // expected-error{{initializer element is not a compile-time constant}} variable
/external/syslinux/gpxe/src/crypto/
H A Darc4.c26 #define SWAP( ary, i, j ) \
27 ({ u8 temp = ary[i]; ary[i] = ary[j]; ary[j] = temp; })
/external/fio/os/
H A Dos-dragonfly.h58 #define CPUMASK_TESTBIT(val, i) ((val).ary[((i) >> 6) & 3] & \
60 #define CPUMASK_ORBIT(mask, i) ((mask).ary[((i) >> 6) & 3] |= \
62 #define CPUMASK_NANDBIT(mask, i) ((mask).ary[((i) >> 6) & 3] &= \
65 (mask).ary[0] = 0; \
66 (mask).ary[1] = 0; \
67 (mask).ary[2] = 0; \
68 (mask).ary[3] = 0; \
/external/protobuf/ruby/ext/google/protobuf_c/
H A Drepeated_field.c69 VALUE ary = rb_ary_new2(len); local
73 rb_ary_push(ary, elem);
75 return ary;
379 VALUE ary = rb_ary_new2(self->size); local
383 rb_ary_push(ary, elem);
385 return ary;
542 VALUE ary = Qnil; local
555 ary = argv[2];
563 ary = argv[1];
567 if (ary !
[all...]
H A Dencode_decode.c118 VALUE ary = (VALUE)closure; \
119 RepeatedField_push_native(ary, &val); \
135 VALUE ary = (VALUE)closure; local
138 RepeatedField_push(ary, str);
146 VALUE ary = (VALUE)closure; local
149 RepeatedField_push(ary, str);
187 VALUE ary = (VALUE)closure; local
195 RepeatedField_push(ary, submsg_rb);
893 static void putary(VALUE ary, const upb_fielddef *f, upb_sink *sink, argument
900 if (ary
1074 VALUE ary = DEREF(msg, offset, VALUE); local
[all...]
H A Dmessage.c211 VALUE ary; local
217 ary = layout_get(self->descriptor->layout, Message_data(self), f);
219 RepeatedField_push(ary, rb_ary_entry(val, i));
H A Dstorage.c685 VALUE ary = Qnil; local
694 ary = rb_class_new_instance(2, args, cRepeatedField);
697 ary = rb_class_new_instance(1, args, cRepeatedField);
700 DEREF(memory, VALUE) = ary;
/external/clang/test/CXX/expr/expr.const/
H A Dp5-0x.cpp18 int ary[a]; // expected-error {{size of array has non-integer type 'const std_example::A'}} member in namespace:std_example
/external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
H A DRubyRepeatedField.java75 IRubyObject ary = null;
86 ary = args[2];
92 ary = args[1];
94 if (ary != null) {
95 RubyArray arr = ary.convertToArray();
H A DRubyMessage.java657 RubyArray ary = value.convertToArray();
658 RubyRepeatedField repeatedField = rubyToRepeatedField(context, fieldDescriptor, ary);
/external/vboot_reference/futility/
H A Dcmd_dump_fmap.c171 static void sort_nodes(int num, struct node_s *ary[]) argument
179 if (ary[j]->start > ary[i]->start) {
180 tmp = ary[i];
181 ary[i] = ary[j];
182 ary[j] = tmp;
/external/opencv/
H A Dcvjni.cpp425 jobjectArray ary = env->NewObjectArray(rects->total, jcls, 0); local
426 if (ary == 0) {
448 env->SetObjectArrayElement(ary, i, jrect);
452 return ary;
/external/ltp/pan/
H A Dltp-pan.c82 struct coll_entry **ary; member in struct:collection
539 run_child(coll->ary[c], running + i, quiet_mode,
1243 coll->ary = malloc(coll->cnt * sizeof(struct coll_entry *));
1249 coll->ary[i] = n;
1418 fprintf(stderr, " name=%s cmdline=%s\n", coll->ary[i]->name,
1419 coll->ary[i]->cmdline);
/external/mesa3d/src/mesa/swrast/
H A Ds_texfilter.c2362 const GLfloat arx = fabsf(rx), ary = fabsf(ry), arz = fabsf(rz); local
2366 if (arx >= ary && arx >= arz) {
2380 else if (ary >= arx && ary >= arz) {
2385 ma = ary;
2391 ma = ary;
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_tex_sample.c3147 const float arx = fabsf(rx), ary = fabsf(ry), arz = fabsf(rz); local
3149 if (arx >= ary && arx >= arz) {
3160 else if (ary >= arx && ary >= arz) {
/external/v8/src/inspector/build/closure-compiler/
H A Dclosure-compiler.jarMETA-INF/MANIFEST.MF META-INF/ com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...

Completed in 620 milliseconds

12