Searched refs:val (Results 201 - 225 of 1943) sorted by relevance

1234567891011>>

/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/clang/test/Analysis/
H A Dmisc-ps-region-store.cpp250 long long val; local
251 if (foo(valA, val) ||
252 (int)val != val) // no-warning
254 result = val; // no-warning
272 const Rdar9212495_A& val = dynamic_cast<const Rdar9212495_A&>(*ptr); local
278 if (&val == 0) {
279 val.bar(); // expected-warning{{Called C++ object pointer is null}}
282 return val;
286 const Rdar9212495_A* val local
460 const rdar10202899_ValT val = rdar10202899_ValTA; variable
[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/quake/quake/src/WinQuake/
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/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.c67 DWORD buflen, val; local
114 buflen = sizeof(val);
116 (LPBYTE) &val, &buflen);
117 if (ret == ERROR_SUCCESS && buflen == sizeof(val))
118 skip_on_error = val;
140 DWORD val, buflen, i; local
156 buflen = sizeof(val);
158 (LPBYTE) &val, &buflen);
159 if (ret == ERROR_SUCCESS && buflen == sizeof(val)) {
160 params.wpa_debug_level = val;
[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
3351 xmlSchemaValPredefTypeNode(xmlSchemaTypePtr type, const xmlChar *value, xmlSchemaValPtr *val, xmlNodePtr node) argument
3372 xmlSchemaValPredefTypeNodeNoNorm(xmlSchemaTypePtr type, const xmlChar *value, xmlSchemaValPtr *val, xmlNodePtr node) argument
3391 xmlSchemaValidatePredefinedType(xmlSchemaTypePtr type, const xmlChar *value, xmlSchemaValPtr *val) argument
3671 xmlSchemaCopyValue(xmlSchemaValPtr val) argument
5124 xmlSchemaValidateLengthFacetInternal(xmlSchemaFacetPtr facet, xmlSchemaTypeType valType, const xmlChar *value, xmlSchemaValPtr val, unsigned long *length, xmlSchemaWhitespaceValueType ws) argument
5238 xmlSchemaValidateLengthFacet(xmlSchemaTypePtr type, xmlSchemaFacetPtr facet, const xmlChar *value, xmlSchemaValPtr val, unsigned long *length) argument
5267 xmlSchemaValidateLengthFacetWhtsp(xmlSchemaFacetPtr facet, xmlSchemaValType valType, const xmlChar *value, xmlSchemaValPtr val, unsigned long *length, xmlSchemaWhitespaceValueType ws) argument
5293 xmlSchemaValidateFacetInternal(xmlSchemaFacetPtr facet, xmlSchemaWhitespaceValueType fws, xmlSchemaValType valType, const xmlChar *value, xmlSchemaValPtr val, xmlSchemaWhitespaceValueType ws) argument
5512 xmlSchemaValidateFacet(xmlSchemaTypePtr base, xmlSchemaFacetPtr facet, const xmlChar *value, xmlSchemaValPtr val) argument
5551 xmlSchemaValidateFacetWhtsp(xmlSchemaFacetPtr facet, xmlSchemaWhitespaceValueType fws, xmlSchemaValType valType, const xmlChar *value, xmlSchemaValPtr val, xmlSchemaWhitespaceValueType ws) argument
5662 xmlSchemaGetCanonValue(xmlSchemaValPtr val, const xmlChar **retValue) argument
6076 xmlSchemaGetCanonValueWhtsp(xmlSchemaValPtr val, const xmlChar **retValue, xmlSchemaWhitespaceValueType ws) argument
6125 xmlSchemaGetValType(xmlSchemaValPtr val) argument
[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...]
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dcommon.h228 #define WPA_PUT_BE16(a, val) \
230 (a)[0] = ((u16) (val)) >> 8; \
231 (a)[1] = ((u16) (val)) & 0xff; \
235 #define WPA_PUT_LE16(a, val) \
237 (a)[1] = ((u16) (val)) >> 8; \
238 (a)[0] = ((u16) (val)) & 0xff; \
243 #define WPA_PUT_BE24(a, val) \
245 (a)[0] = (u8) ((((u32) (val)) >> 16) & 0xff); \
246 (a)[1] = (u8) ((((u32) (val)) >> 8) & 0xff); \
247 (a)[2] = (u8) (((u32) (val))
[all...]
/external/wpa_supplicant_8/src/utils/
H A Dcommon.h228 #define WPA_PUT_BE16(a, val) \
230 (a)[0] = ((u16) (val)) >> 8; \
231 (a)[1] = ((u16) (val)) & 0xff; \
235 #define WPA_PUT_LE16(a, val) \
237 (a)[1] = ((u16) (val)) >> 8; \
238 (a)[0] = ((u16) (val)) & 0xff; \
243 #define WPA_PUT_BE24(a, val) \
245 (a)[0] = (u8) ((((u32) (val)) >> 16) & 0xff); \
246 (a)[1] = (u8) ((((u32) (val)) >> 8) & 0xff); \
247 (a)[2] = (u8) (((u32) (val))
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dcommon.h228 #define WPA_PUT_BE16(a, val) \
230 (a)[0] = ((u16) (val)) >> 8; \
231 (a)[1] = ((u16) (val)) & 0xff; \
235 #define WPA_PUT_LE16(a, val) \
237 (a)[1] = ((u16) (val)) >> 8; \
238 (a)[0] = ((u16) (val)) & 0xff; \
243 #define WPA_PUT_BE24(a, val) \
245 (a)[0] = (u8) ((((u32) (val)) >> 16) & 0xff); \
246 (a)[1] = (u8) ((((u32) (val)) >> 8) & 0xff); \
247 (a)[2] = (u8) (((u32) (val))
[all...]
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dcompat.h80 FlagDescription(T *addr, const char *doc, const char *type, const T val) argument
81 : address(addr), doc_string(doc), type_name(type), default_value(val) {}
108 bool SetFlag(const string &val, bool *address) const { argument
109 if (val == "true" || val == "1" || val.empty()) {
112 } else if (val == "false" || val == "0") {
120 bool SetFlag(const string &val, string *address) const { argument
121 *address = val;
124 SetFlag(const string &val, int32 *address) const argument
129 SetFlag(const string &val, int64 *address) const argument
134 SetFlag(const string &val, double *address) const argument
[all...]
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DObjectStack.java101 Object val = m_map[--m_firstFree];
104 return val;
156 * @param val object to set at the top
159 public void setTop(Object val) argument
162 m_map[m_firstFree - 1] = val;
/external/grub/netboot/
H A Dotulip.h5 #define TULIP_CSR_WRITE(csr, val) (membase[csr*2] = val)
6 #define CSR_WRITE(csr, val) (membase[csr*2] = val)
/external/grub/stage2/
H A Ddefs.h55 unsigned int val[2]; /* 2 int values make... */ member in struct:_quad_
/external/iproute2/include/linux/tc_ematch/
H A Dtc_em_cmp.h8 __u32 val; member in struct:tcf_em_cmp
/external/libvorbis/lib/
H A Dlookup.c65 long val=INVSQ_LOOKUP_I[i]- /* 1.16 */ local
70 if(e&1)val=(val*5792)>>13; /* multiply val by 1/sqrt(2) */
73 return(val>>e);
/external/libxml2/include/libxml/
H A Dxpath.h442 xmlXPathNodeSetCreate (xmlNodePtr val);
448 xmlXPathObjectCopy (xmlXPathObjectPtr val);
456 xmlXPathCastNumberToBoolean (double val);
458 xmlXPathCastStringToBoolean (const xmlChar * val);
462 xmlXPathCastToBoolean (xmlXPathObjectPtr val);
465 xmlXPathCastBooleanToNumber (int val);
467 xmlXPathCastStringToNumber (const xmlChar * val);
473 xmlXPathCastToNumber (xmlXPathObjectPtr val);
476 xmlXPathCastBooleanToString (int val);
478 xmlXPathCastNumberToString (double val);
[all...]
/external/opencv/cvaux/include/
H A Dcvaux.hpp94 bool set_min_ch_val( int channel, int val ) // set the minimum allowed value of the specified channel
95 { m_min_ch_val[channel] = val; return true; }
96 bool set_max_ch_val( int channel, int val ) // set the maximum allowed value of the specified channel
97 { m_max_ch_val[channel] = val; return true; }
/external/oprofile/module/
H A Dop_util.c96 int check_range(int val, int l, int h, char const * msg) argument
98 if (val < l || val > h) {
99 printk(msg, val, l, h);
/external/qemu/
H A Ddevice_tree.h22 const char *property, uint32_t val);
/external/qemu/distrib/sdl-1.2.15/src/thread/beos/
H A DSDL_syssem.c67 int32 val; local
77 val = acquire_sem(sem->id);
80 val = acquire_sem_etc(sem->id, 1, B_RELATIVE_TIMEOUT, timeout);
82 switch (val) {
/external/qemu/distrib/zlib-1.2.3/
H A Dinftrees.h21 of the bit buffer. val is the actual byte to output in the case
27 unsigned short val; /* offset in table or code value */ member in struct:__anon10744

Completed in 593 milliseconds

1234567891011>>