HomeSort by relevance Sort by last modified time
    Searched refs:field (Results 1 - 25 of 1106) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/kernel/arch-x86/asm/
pda.h 47 #define pda_offset(field) offsetof(struct x8664_pda, field)
49 #define pda_to_op(op,field,val) do { typedef typeof(_proxy_pda.field) T__; if (0) { T__ tmp__; tmp__ = (val); } switch (sizeof(_proxy_pda.field)) { case 2: asm(op "w %1,%%gs:%c2" : "+m" (_proxy_pda.field) : "ri" ((T__)val), "i"(pda_offset(field))); break; case 4: asm(op "l %1,%%gs:%c2" : "+m" (_proxy_pda.field) : "ri" ((T__)val), "i" (pda_offset(field))); break; case 8: asm(op "q %1,%%gs:%c2": "+m" (_proxy_pda.field) : "ri" ((T__)val), "i"(pda_offset(field))); break; default: __bad_pda_field(); } } (…)
    [all...]
  /external/kernel-headers/original/asm-x86/
pda.h 58 #define pda_offset(field) offsetof(struct x8664_pda, field)
60 #define pda_to_op(op,field,val) do { \
61 typedef typeof(_proxy_pda.field) T__; \
63 switch (sizeof(_proxy_pda.field)) { \
66 "+m" (_proxy_pda.field) : \
68 "i"(pda_offset(field))); \
72 "+m" (_proxy_pda.field) : \
74 "i" (pda_offset(field))); \
78 "+m" (_proxy_pda.field) :
    [all...]
  /ndk/build/platforms/android-5/arch-x86/usr/include/asm/
pda.h 47 #define pda_offset(field) offsetof(struct x8664_pda, field)
49 #define pda_to_op(op,field,val) do { typedef typeof(_proxy_pda.field) T__; if (0) { T__ tmp__; tmp__ = (val); } switch (sizeof(_proxy_pda.field)) { case 2: asm(op "w %1,%%gs:%c2" : "+m" (_proxy_pda.field) : "ri" ((T__)val), "i"(pda_offset(field))); break; case 4: asm(op "l %1,%%gs:%c2" : "+m" (_proxy_pda.field) : "ri" ((T__)val), "i" (pda_offset(field))); break; case 8: asm(op "q %1,%%gs:%c2": "+m" (_proxy_pda.field) : "ri" ((T__)val), "i"(pda_offset(field))); break; default: __bad_pda_field(); } } (…)
    [all...]
  /ndk/build/platforms/android-8/arch-x86/usr/include/asm/
pda.h 47 #define pda_offset(field) offsetof(struct x8664_pda, field)
49 #define pda_to_op(op,field,val) do { typedef typeof(_proxy_pda.field) T__; if (0) { T__ tmp__; tmp__ = (val); } switch (sizeof(_proxy_pda.field)) { case 2: asm(op "w %1,%%gs:%c2" : "+m" (_proxy_pda.field) : "ri" ((T__)val), "i"(pda_offset(field))); break; case 4: asm(op "l %1,%%gs:%c2" : "+m" (_proxy_pda.field) : "ri" ((T__)val), "i" (pda_offset(field))); break; case 8: asm(op "q %1,%%gs:%c2": "+m" (_proxy_pda.field) : "ri" ((T__)val), "i"(pda_offset(field))); break; default: __bad_pda_field(); } } (…)
    [all...]
  /external/qemu/
sys-queue.h 95 #define LIST_INSERT_AFTER(listelm, elm, field) do { \
96 if (((elm)->field.le_next = (listelm)->field.le_next) != NULL) \
97 (listelm)->field.le_next->field.le_prev = \
98 &(elm)->field.le_next; \
99 (listelm)->field.le_next = (elm); \
100 (elm)->field.le_prev = &(listelm)->field.le_next; \
103 #define LIST_INSERT_BEFORE(listelm, elm, field) do {
    [all...]
sys-tree.h 86 #define SPLAY_LEFT(elm, field) (elm)->field.spe_left
87 #define SPLAY_RIGHT(elm, field) (elm)->field.spe_right
92 #define SPLAY_ROTATE_RIGHT(head, tmp, field) do { \
93 SPLAY_LEFT((head)->sph_root, field) = SPLAY_RIGHT(tmp, field); \
94 SPLAY_RIGHT(tmp, field) = (head)->sph_root; \
98 #define SPLAY_ROTATE_LEFT(head, tmp, field) do { \
99 SPLAY_RIGHT((head)->sph_root, field) = SPLAY_LEFT(tmp, field);
    [all...]
  /bionic/libc/include/sys/
queue.h 105 #define LIST_INSERT_AFTER(listelm, elm, field) do { \
106 if (((elm)->field.le_next = (listelm)->field.le_next) != NULL) \
107 (listelm)->field.le_next->field.le_prev = \
108 &(elm)->field.le_next; \
109 (listelm)->field.le_next = (elm); \
110 (elm)->field.le_prev = &(listelm)->field.le_next; \
113 #define LIST_INSERT_BEFORE(listelm, elm, field) do {
    [all...]
  /ndk/build/platforms/android-8/arch-arm/usr/include/sys/
queue.h 105 #define LIST_INSERT_AFTER(listelm, elm, field) do { \
106 if (((elm)->field.le_next = (listelm)->field.le_next) != NULL) \
107 (listelm)->field.le_next->field.le_prev = \
108 &(elm)->field.le_next; \
109 (listelm)->field.le_next = (elm); \
110 (elm)->field.le_prev = &(listelm)->field.le_next; \
113 #define LIST_INSERT_BEFORE(listelm, elm, field) do {
    [all...]
  /ndk/build/platforms/android-8/arch-x86/usr/include/sys/
queue.h 105 #define LIST_INSERT_AFTER(listelm, elm, field) do { \
106 if (((elm)->field.le_next = (listelm)->field.le_next) != NULL) \
107 (listelm)->field.le_next->field.le_prev = \
108 &(elm)->field.le_next; \
109 (listelm)->field.le_next = (elm); \
110 (elm)->field.le_prev = &(listelm)->field.le_next; \
113 #define LIST_INSERT_BEFORE(listelm, elm, field) do {
    [all...]
  /external/webkit/WebCore/manual-tests/resources/
TestApplet.java 5 public int field; field in class:TestApplet
9 field = MAGIC_NUMBER;
  /external/ipsec-tools/src/include-glibc/sys/
queue.h 129 #define SLIST_FOREACH(var, head, field) \
132 (var) = SLIST_NEXT((var), field))
138 #define SLIST_INSERT_AFTER(slistelm, elm, field) do { \
139 SLIST_NEXT((elm), field) = SLIST_NEXT((slistelm), field); \
140 SLIST_NEXT((slistelm), field) = (elm); \
143 #define SLIST_INSERT_HEAD(head, elm, field) do { \
144 SLIST_NEXT((elm), field) = SLIST_FIRST((head)); \
148 #define SLIST_NEXT(elm, field) ((elm)->field.sle_next
    [all...]
  /dalvik/tests/035-enum/src/
Main.java 3 import java.lang.reflect.Field;
12 Field field; local
14 field = Shubbery.class.getDeclaredField("CRAWLING");
19 System.out.println("found field " + field.getName());
20 System.out.println(" synthetic? " + field.isSynthetic());
21 System.out.println(" enum? " + field.isEnumConstant());
  /external/webkit/WebKit/android/nav/
CachedPrefix.h 44 #define OFFSETOF(type, field) ((char*)&(((type*)1)->field) - (char*)1) // avoids gnu warning
  /packages/apps/Email/src/org/apache/james/mime4j/field/address/parser/
BaseNode.java 20 package org.apache.james.mime4j.field.address.parser;
22 import org.apache.james.mime4j.field.address.parser.Node;
23 import org.apache.james.mime4j.field.address.parser.Token;
  /dalvik/dx/src/com/android/dx/dex/file/
FieldAnnotationStruct.java 26 * Association of a field and its annotations.
30 /** {@code non-null;} the field in question */
31 private final CstFieldRef field; field in class:FieldAnnotationStruct
39 * @param field {@code non-null;} the field in question
42 public FieldAnnotationStruct(CstFieldRef field,
44 if (field == null) {
45 throw new NullPointerException("field == null");
52 this.field = field;
    [all...]
EncodedField.java 29 * Representation of a field of a class, of any sort.
33 /** {@code non-null;} constant for the field */
34 private final CstFieldRef field; field in class:EncodedField
39 * @param field {@code non-null;} constant for the field
42 public EncodedField(CstFieldRef field, int accessFlags) {
45 if (field == null) {
46 throw new NullPointerException("field == null");
54 this.field = field;
    [all...]
  /frameworks/base/test-runner/src/android/test/
ActivityTestCase.java 21 import java.lang.reflect.Field;
62 final Field[] fields = getClass().getDeclaredFields();
63 for (Field field : fields) {
64 final Class<?> fieldClass = field.getDeclaringClass();
65 if (testCaseClass.isAssignableFrom(fieldClass) && !field.getType().isPrimitive()) {
67 field.setAccessible(true);
68 field.set(this, null);
70 android.util.Log.d("TestCase", "Error: Could not nullify field!");
73 if (field.get(this) != null)
    [all...]
  /system/core/sh/
mknodes.sh 56 [ $field = 0 ] && struct_list="$struct_list $struct"
57 eval field_${struct}_$field=\"\$*\"
58 eval numfld_$struct=\$field
59 field=$(($field + 1))
68 field=0
80 field=0
82 eval line=\"\$field_${struct}_$field\"
83 field=$(($field + 1)
    [all...]
  /external/icu4c/common/unicode/
umisc.h 29 /** A struct representing a range of text containing a specific field
34 * The field
37 int32_t field; member in struct:UFieldPosition
39 * The start of the text range containing field
44 * The limit of the text range containing field
  /packages/apps/Email/src/org/apache/james/mime4j/field/
FieldParser.java 16 package org.apache.james.mime4j.field;
20 Field parse(final String name, final String body, final String raw);
  /external/icu4c/test/intltest/
fldset.cpp 23 FieldsSet::FieldsSet(UDebugEnumType field) {
24 construct(field, udbg_enumCount(field));
35 void FieldsSet::construct(UDebugEnumType field, int32_t fieldCount) {
36 fEnum = field;
61 str = str + UnicodeString("some field") + "=" + myVal+" not " + theirVal+", ";
113 int32_t field = handleParseName(inheritFrom, kv[0], kv[1], status); local
121 it_errln(UnicodeString("Parse Failed: Field ") + UnicodeString(ch) + UnicodeString(", err ") + UnicodeString(u_errorName(status)));
125 if(field != -1) {
126 handleParseValue(inheritFrom, field, kv[1], status)
    [all...]
  /dalvik/libcore/icu/src/main/java/com/ibm/icu4jni/text/
RuleBasedNumberFormat.java 142 public StringBuffer format(long value, StringBuffer buffer, FieldPosition field) {
150 if(field != null) {
151 fieldType = getFieldType(field.getFieldAttribute());
154 String result = formatRBNFImpl(this.addr, value, field,
163 FieldPosition field, String fieldType, StringBuffer buffer);
166 public StringBuffer format(double value, StringBuffer buffer, FieldPosition field) {
174 if(field != null) {
175 fieldType = getFieldType(field.getFieldAttribute());
178 String result = formatRBNFImpl(this.addr, value, field,
187 FieldPosition field, String fieldType, StringBuffer buffer)
    [all...]
  /dalvik/tests/046-reflect/src/
Main.java 30 void printFieldInfo(Field field) {
31 System.out.println("Field name is " + field.getName());
33 + field.getDeclaringClass().getName());
34 System.out.println(" Field type is " + field.getType().getName());
36 + Integer.toHexString(field.getModifiers()));
44 Field field = null local
61 Field field = null; local
    [all...]
  /external/stlport/src/
facets_byname.cpp 519 pos_format.field[0] = (char) money_base::sign;
522 pos_format.field[1] = (char) money_base::symbol;
525 pos_format.field[2] = (char) money_base::space;
526 pos_format.field[3] = (char) money_base::value;
529 pos_format.field[2] = (char) money_base::value;
530 pos_format.field[3] = (char) money_base::none;
534 pos_format.field[1] = (char) money_base::value;
537 pos_format.field[2] = (char) money_base::space;
538 pos_format.field[3] = (char) money_base::symbol;
541 pos_format.field[2] = (char) money_base::symbol
    [all...]
  /dalvik/libcore/security/src/main/java/java/security/spec/
EllipticCurve.java 30 // Underlying finite field
31 private final ECField field; field in class:EllipticCurve
47 * Creates a new {@code EllipticCurve} with the specified field,
50 * @param field
51 * the finite field of this elliptic curve.
59 * if the specified coefficients are not in the specified field.
61 public EllipticCurve(ECField field, BigInteger a, BigInteger b, byte[] seed) {
62 this.field = field;
63 if (this.field == null)
    [all...]

Completed in 56 milliseconds

1 2 3 4 5 6 7 8 91011>>