Searched refs:val (Results 151 - 175 of 1738) sorted by relevance

1234567891011>>

/external/e2fsprogs/lib/ext2fs/
H A Dbitops.h22 extern __u16 ext2fs_swab16(__u16 val);
23 extern __u32 ext2fs_swab32(__u32 val);
24 extern __u64 ext2fs_swab64(__u64 val);
224 _INLINE_ __u32 ext2fs_swab32(__u32 val) argument
227 __asm__("bswap %0" : "=r" (val) : "0" (val));
232 :"=q" (val)
233 : "0" (val));
235 return val;
238 _INLINE_ __u16 ext2fs_swab16(__u16 val) argument
290 ext2fs_swab16(__u16 val) argument
295 ext2fs_swab32(__u32 val) argument
303 ext2fs_swab64(__u64 val) argument
[all...]
/external/icu4c/test/intltest/
H A Ditrbnfp.cpp146 IntlTestRBNFParse::testfmt(RuleBasedNumberFormat* formatter, double val, UErrorCode& status) { argument
148 formatter->format((const Formattable)val, us, status);
154 logln("error: could not format %g, returned status: %d", val, status);
159 IntlTestRBNFParse::testfmt(RuleBasedNumberFormat* formatter, int val, UErrorCode& status) { argument
161 formatter->format((const Formattable)(int32_t)val, us, status);
167 logln("error: could not format %d, returned status: %d", val, status);
/external/openssl/crypto/x509v3/
H A Dv3_extku.c123 CONF_VALUE *val;
132 val = sk_CONF_VALUE_value(nval, i);
133 if(val->value) extval = val->value;
134 else extval = val->name;
138 X509V3_conf_err(val);
H A Dv3_pmaps.c120 CONF_VALUE *val;
129 val = sk_CONF_VALUE_value(nval, i);
130 if(!val->value || !val->name) {
133 X509V3_conf_err(val);
136 obj1 = OBJ_txt2obj(val->name, 0);
137 obj2 = OBJ_txt2obj(val->value, 0);
141 X509V3_conf_err(val);
/external/wpa_supplicant/
H A Dcommon.h132 #define WPA_PUT_BE16(a, val) \
134 (a)[0] = ((u16) (val)) >> 8; \
135 (a)[1] = ((u16) (val)) & 0xff; \
139 #define WPA_PUT_LE16(a, val) \
141 (a)[1] = ((u16) (val)) >> 8; \
142 (a)[0] = ((u16) (val)) & 0xff; \
147 #define WPA_PUT_BE24(a, val) \
149 (a)[0] = (u8) (((u32) (val)) >> 16); \
150 (a)[1] = (u8) (((u32) (val)) >> 8); \
151 (a)[2] = (u8) (((u32) (val))
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DAVTPartSimple.java42 * @param val A pure string section of an AVT.
44 public AVTPartSimple(String val) argument
46 m_val = val;
/external/blktrace/btt/
H A Dtrace_plug.c25 __u64 *val = u_iop->pdu; local
26 return be64_to_cpu(*val);
/external/dbus/bus/
H A Ddesktop-file.h49 const char **val);
53 char **val,
/external/esd/include/
H A Daupvlist.h52 int AUpvsetval (AUpvlist, int item, void *val);
55 int AUpvgetval (AUpvlist, int item, void *val);
/external/grub/netboot/
H A Dlinux-asm-io.h127 #define outb(val,port) \
129 __outbc((val),(port)) : \
130 __outb((val),(port)))
137 #define outb_p(val,port) \
139 __outbc_p((val),(port)) : \
140 __outb_p((val),(port)))
147 #define outw(val,port) \
149 __outwc((val),(port)) : \
150 __outw((val),(port)))
157 #define outw_p(val,por
[all...]
/external/qemu/
H A Dqemu-timer.h194 int64_t val; local
195 asm volatile ("rdtsc" : "=A" (val));
196 return val;
204 int64_t val; local
206 val = high;
207 val <<= 32;
208 val |= low;
209 return val;
216 int val; local
217 asm volatile ("mfctl %%cr16, %0" : "=r"(val));
225 int64_t val; local
234 int64_t val; local
[all...]
/external/quake/quake/src/WinQuake/
H A Dvregset.cpp32 void loutportb (int port, int val) argument
34 printf ("port, val: %x %x\n", port, val);
H A Dsnd_mix.cpp49 int val; local
53 val = (snd_p[i]*snd_vol)>>8;
54 if (val > 0x7fff)
56 else if (val < (short)0x8000)
59 snd_out[i] = val;
61 val = (snd_p[i+1]*snd_vol)>>8;
62 if (val > 0x7fff)
64 else if (val < (short)0x8000)
67 snd_out[i+1] = val;
154 int val; local
[all...]
/external/v8/test/mjsunit/regress/
H A Dregress-1050043.js28 function unsignedShiftRight(val, shift) {
29 return val >>> shift;
/external/webkit/Source/WebCore/dom/
H A DCSSMappedAttributeDeclaration.h43 void setMappedState(MappedAttributeEntry type, const QualifiedName& name, const AtomicString& val) argument
47 m_attrValue = val;
/external/bluetooth/glib/glib/
H A Dgatomic.c40 gint val)
46 : "0" (val), "m" (*atomic));
52 gint val)
56 : "ir" (val), "m" (*atomic));
224 gint val)
230 : "0" (val), "m" (*atomic));
236 gint val)
240 : "ir" (val), "m" (*atomic));
281 gint val)
290 : "b" (atomic), "r" (val), "
39 g_atomic_int_exchange_and_add(volatile gint G_GNUC_MAY_ALIAS *atomic, gint val) argument
51 g_atomic_int_add(volatile gint G_GNUC_MAY_ALIAS *atomic, gint val) argument
223 g_atomic_int_exchange_and_add(volatile gint G_GNUC_MAY_ALIAS *atomic, gint val) argument
235 g_atomic_int_add(volatile gint G_GNUC_MAY_ALIAS *atomic, gint val) argument
280 g_atomic_int_exchange_and_add(volatile gint G_GNUC_MAY_ALIAS *atomic, gint val) argument
306 g_atomic_int_add(volatile gint G_GNUC_MAY_ALIAS *atomic, gint val) argument
330 g_atomic_int_exchange_and_add(volatile gint G_GNUC_MAY_ALIAS *atomic, gint val) argument
342 g_atomic_int_add(volatile gint G_GNUC_MAY_ALIAS *atomic, gint val) argument
492 g_atomic_int_exchange_and_add(volatile gint G_GNUC_MAY_ALIAS *atomic, gint val) argument
499 g_atomic_int_add(volatile gint G_GNUC_MAY_ALIAS *atomic, gint val) argument
593 g_atomic_int_exchange_and_add(volatile gint G_GNUC_MAY_ALIAS *atomic, gint val) argument
607 g_atomic_int_add(volatile gint G_GNUC_MAY_ALIAS *atomic, gint val) argument
737 g_atomic_int_exchange_and_add(volatile gint G_GNUC_MAY_ALIAS *atomic, gint val) argument
753 g_atomic_int_add(volatile gint G_GNUC_MAY_ALIAS *atomic, gint val) argument
800 g_atomic_int_exchange_and_add(volatile gint32 G_GNUC_MAY_ALIAS *atomic, gint32 val) argument
807 g_atomic_int_add(volatile gint32 G_GNUC_MAY_ALIAS *atomic, gint32 val) argument
851 g_atomic_int_exchange_and_add(volatile gint G_GNUC_MAY_ALIAS *atomic, gint val) argument
866 g_atomic_int_add(volatile gint G_GNUC_MAY_ALIAS *atomic, gint val) argument
999 g_atomic_int_exchange_and_add(volatile gint G_GNUC_MAY_ALIAS *atomic, gint val) argument
1011 g_atomic_int_add(volatile gint G_GNUC_MAY_ALIAS *atomic, gint val) argument
[all...]
/external/libxml2/
H A Dxmlschemastypes.c244 ret->val = xmlSchemaNewValue(XML_SCHEMAS_NNINTEGER);
245 ret->val->value.decimal.lo = value;
874 * @val: the value
882 xmlSchemaValueGetAsString(xmlSchemaValPtr val) argument
884 if (val == NULL)
886 switch (val->type) {
899 return (BAD_CAST val->value.str);
908 * @val: the value
915 xmlSchemaValueGetAsBoolean(xmlSchemaValPtr val) argument
917 if ((val
939 xmlSchemaValPtr val; local
967 xmlSchemaValPtr val; local
993 xmlSchemaValPtr val; local
1546 xmlSchemaValidateDates(xmlSchemaValType type, const xmlChar *dateTime, xmlSchemaValPtr *val, int collapse) argument
1769 xmlSchemaValidateDuration(xmlSchemaTypePtr type ATTRIBUTE_UNUSED, const xmlChar *duration, xmlSchemaValPtr *val, int collapse) argument
2002 xmlChar *val, *cur, *endval; local
2125 xmlSchemaValAtomicType(xmlSchemaTypePtr type, const xmlChar * value, xmlSchemaValPtr * val, xmlNodePtr node, int flags, xmlSchemaWhitespaceValueType ws, int normOnTheFly, int applyNorm, int createStringValue) argument
3333 xmlSchemaValPredefTypeNode(xmlSchemaTypePtr type, const xmlChar *value, xmlSchemaValPtr *val, xmlNodePtr node) argument
3354 xmlSchemaValPredefTypeNodeNoNorm(xmlSchemaTypePtr type, const xmlChar *value, xmlSchemaValPtr *val, xmlNodePtr node) argument
3373 xmlSchemaValidatePredefinedType(xmlSchemaTypePtr type, const xmlChar *value, xmlSchemaValPtr *val) argument
3653 xmlSchemaCopyValue(xmlSchemaValPtr val) argument
5106 xmlSchemaValidateLengthFacetInternal(xmlSchemaFacetPtr facet, xmlSchemaTypeType valType, const xmlChar *value, xmlSchemaValPtr val, unsigned long *length, xmlSchemaWhitespaceValueType ws) argument
5220 xmlSchemaValidateLengthFacet(xmlSchemaTypePtr type, xmlSchemaFacetPtr facet, const xmlChar *value, xmlSchemaValPtr val, unsigned long *length) argument
5249 xmlSchemaValidateLengthFacetWhtsp(xmlSchemaFacetPtr facet, xmlSchemaValType valType, const xmlChar *value, xmlSchemaValPtr val, unsigned long *length, xmlSchemaWhitespaceValueType ws) argument
5275 xmlSchemaValidateFacetInternal(xmlSchemaFacetPtr facet, xmlSchemaWhitespaceValueType fws, xmlSchemaValType valType, const xmlChar *value, xmlSchemaValPtr val, xmlSchemaWhitespaceValueType ws) argument
5494 xmlSchemaValidateFacet(xmlSchemaTypePtr base, xmlSchemaFacetPtr facet, const xmlChar *value, xmlSchemaValPtr val) argument
5533 xmlSchemaValidateFacetWhtsp(xmlSchemaFacetPtr facet, xmlSchemaWhitespaceValueType fws, xmlSchemaValType valType, const xmlChar *value, xmlSchemaValPtr val, xmlSchemaWhitespaceValueType ws) argument
5644 xmlSchemaGetCanonValue(xmlSchemaValPtr val, const xmlChar **retValue) argument
6058 xmlSchemaGetCanonValueWhtsp(xmlSchemaValPtr val, const xmlChar **retValue, xmlSchemaWhitespaceValueType ws) argument
6107 xmlSchemaGetValType(xmlSchemaValPtr val) argument
[all...]
/external/iproute2/misc/
H A Drtacct.c69 unsigned long long val[256*4]; member in struct:rtacct_data
147 void format_count(FILE *fp, unsigned long long val) argument
149 if (val > 1024*1024*1024)
150 fprintf(fp, " %10lluM", val/(1024*1024));
151 else if (val > 1024*1024)
152 fprintf(fp, " %10lluK", val/1024);
154 fprintf(fp, " %10llu", val);
185 unsigned long long *val; local
191 val = &kern_db->val[real
247 unsigned long long *val; local
[all...]
/external/kernel-headers/original/asm-x86/
H A Dpage_32.h67 static inline pgd_t native_make_pgd(unsigned long long val) argument
69 return (pgd_t) { val };
72 static inline pmd_t native_make_pmd(unsigned long long val) argument
74 return (pmd_t) { val };
77 static inline pte_t native_make_pte(unsigned long long val) argument
79 return (pte_t) { .pte_low = val, .pte_high = (val >> 32) } ;
105 static inline pgd_t native_make_pgd(unsigned long val) argument
107 return (pgd_t) { val };
110 static inline pte_t native_make_pte(unsigned long val) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/examples/
H A Dwpas-dbus-new.py45 val = net_obj.Get(WPAS_DBUS_BSS_INTERFACE, 'BSSID',
48 for item in val:
51 val = net_obj.Get(WPAS_DBUS_BSS_INTERFACE, 'SSID',
53 ssid = byte_array_to_string(val)
55 val = net_obj.Get(WPAS_DBUS_BSS_INTERFACE, 'WPA',
58 if len(val["KeyMgmt"]) > 0:
60 val = net_obj.Get(WPAS_DBUS_BSS_INTERFACE, 'RSN',
63 if len(val["KeyMgmt"]) > 0:
69 val = net_obj.Get(WPAS_DBUS_BSS_INTERFACE, 'Rates',
71 if len(val) >
[all...]
/external/kernel-headers/original/linux/
H A Dswab.h46 static inline __attribute_const__ __u16 __fswab16(__u16 val) argument
49 return __arch_swab16(val);
51 return ___constant_swab16(val);
55 static inline __attribute_const__ __u32 __fswab32(__u32 val) argument
58 return __arch_swab32(val);
60 return ___constant_swab32(val);
64 static inline __attribute_const__ __u64 __fswab64(__u64 val) argument
67 return __arch_swab64(val);
69 __u32 h = val >> 32;
70 __u32 l = val
77 __fswahw32(__u32 val) argument
86 __fswahb32(__u32 val) argument
[all...]
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DParametersHeader.java205 Integer val = Integer.valueOf(value);
206 this.parameters.set(name,val);
226 Boolean val = Boolean.valueOf(value);
227 this.parameters.set(name,val);
245 Float val = Float.valueOf(value);
248 nv.setValueAsObject(val);
250 nv = new NameValue(name, val);
422 Object val = getParameterValue(parameterName);
423 if (val instanceof GenericURI)
424 return (GenericURI) val;
[all...]
/external/wpa_supplicant_6/wpa_supplicant/
H A Dmain_winsvc.c73 DWORD buflen, val; local
120 buflen = sizeof(val);
122 (LPBYTE) &val, &buflen);
123 if (ret == ERROR_SUCCESS && buflen == sizeof(val))
124 skip_on_error = val;
146 DWORD val, buflen, i; local
162 buflen = sizeof(val);
164 (LPBYTE) &val, &buflen);
165 if (ret == ERROR_SUCCESS && buflen == sizeof(val)) {
166 params.wpa_debug_level = val;
[all...]
/external/wpa_supplicant_8/wpa_supplicant/
H A Dmain_winsvc.c73 DWORD buflen, val; local
120 buflen = sizeof(val);
122 (LPBYTE) &val, &buflen);
123 if (ret == ERROR_SUCCESS && buflen == sizeof(val))
124 skip_on_error = val;
146 DWORD val, buflen, i; local
162 buflen = sizeof(val);
164 (LPBYTE) &val, &buflen);
165 if (ret == ERROR_SUCCESS && buflen == sizeof(val)) {
166 params.wpa_debug_level = val;
[all...]
/external/wpa_supplicant_6/wpa_supplicant/src/utils/
H A Dcommon.h250 #define WPA_PUT_BE16(a, val) \
252 (a)[0] = ((u16) (val)) >> 8; \
253 (a)[1] = ((u16) (val)) & 0xff; \
257 #define WPA_PUT_LE16(a, val) \
259 (a)[1] = ((u16) (val)) >> 8; \
260 (a)[0] = ((u16) (val)) & 0xff; \
265 #define WPA_PUT_BE24(a, val) \
267 (a)[0] = (u8) ((((u32) (val)) >> 16) & 0xff); \
268 (a)[1] = (u8) ((((u32) (val)) >> 8) & 0xff); \
269 (a)[2] = (u8) (((u32) (val))
[all...]

Completed in 529 milliseconds

1234567891011>>