HomeSort by relevance Sort by last modified time
    Searched full:val (Results 376 - 400 of 2170) sorted by null

<<11121314151617181920>>

  /prebuilt/darwin-x86/toolchain/arm-eabi-4.2.1/lib/gcc/arm-eabi/4.2.1/install-tools/include/
unwind.h 250 _uw val; local
251 _Unwind_VRS_Get (context, _UVRSC_CORE, regno, _UVRSD_UINT32, &val);
252 return val;
263 _Unwind_SetGR (_Unwind_Context *context, int regno, _Unwind_Word val)
265 _Unwind_VRS_Set (context, _UVRSC_CORE, regno, _UVRSD_UINT32, &val);
270 #define _Unwind_SetIP(context, val) \
271 _Unwind_SetGR (context, 15, val | (_Unwind_GetGR (context, 15) & 1))
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.3.1/lib/gcc/arm-eabi/4.3.1/include/
unwind.h 251 _uw val; local
252 _Unwind_VRS_Get (context, _UVRSC_CORE, regno, _UVRSD_UINT32, &val);
253 return val;
264 _Unwind_SetGR (_Unwind_Context *context, int regno, _Unwind_Word val)
266 _Unwind_VRS_Set (context, _UVRSC_CORE, regno, _UVRSD_UINT32, &val);
271 #define _Unwind_SetIP(context, val) \
272 _Unwind_SetGR (context, 15, val | (_Unwind_GetGR (context, 15) & 1))
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/include/
unwind.h 247 _uw val; local
248 _Unwind_VRS_Get (context, _UVRSC_CORE, regno, _UVRSD_UINT32, &val);
249 return val;
260 _Unwind_SetGR (_Unwind_Context *context, int regno, _Unwind_Word val)
262 _Unwind_VRS_Set (context, _UVRSC_CORE, regno, _UVRSD_UINT32, &val);
267 #define _Unwind_SetIP(context, val) \
268 _Unwind_SetGR (context, 15, val | (_Unwind_GetGR (context, 15) & 1))
  /prebuilt/linux-x86/toolchain/arm-eabi-4.2.1/lib/gcc/arm-eabi/4.2.1/include/
unwind.h 250 _uw val; local
251 _Unwind_VRS_Get (context, _UVRSC_CORE, regno, _UVRSD_UINT32, &val);
252 return val;
263 _Unwind_SetGR (_Unwind_Context *context, int regno, _Unwind_Word val)
265 _Unwind_VRS_Set (context, _UVRSC_CORE, regno, _UVRSD_UINT32, &val);
270 #define _Unwind_SetIP(context, val) \
271 _Unwind_SetGR (context, 15, val | (_Unwind_GetGR (context, 15) & 1))
  /prebuilt/linux-x86/toolchain/arm-eabi-4.2.1/lib/gcc/arm-eabi/4.2.1/install-tools/include/
unwind.h 250 _uw val; local
251 _Unwind_VRS_Get (context, _UVRSC_CORE, regno, _UVRSD_UINT32, &val);
252 return val;
263 _Unwind_SetGR (_Unwind_Context *context, int regno, _Unwind_Word val)
265 _Unwind_VRS_Set (context, _UVRSC_CORE, regno, _UVRSD_UINT32, &val);
270 #define _Unwind_SetIP(context, val) \
271 _Unwind_SetGR (context, 15, val | (_Unwind_GetGR (context, 15) & 1))
  /prebuilt/linux-x86/toolchain/arm-eabi-4.3.1/lib/gcc/arm-eabi/4.3.1/include/
unwind.h 251 _uw val; local
252 _Unwind_VRS_Get (context, _UVRSC_CORE, regno, _UVRSD_UINT32, &val);
253 return val;
264 _Unwind_SetGR (_Unwind_Context *context, int regno, _Unwind_Word val)
266 _Unwind_VRS_Set (context, _UVRSC_CORE, regno, _UVRSD_UINT32, &val);
271 #define _Unwind_SetIP(context, val) \
272 _Unwind_SetGR (context, 15, val | (_Unwind_GetGR (context, 15) & 1))
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/include/
unwind.h 247 _uw val; local
248 _Unwind_VRS_Get (context, _UVRSC_CORE, regno, _UVRSD_UINT32, &val);
249 return val;
260 _Unwind_SetGR (_Unwind_Context *context, int regno, _Unwind_Word val)
262 _Unwind_VRS_Set (context, _UVRSC_CORE, regno, _UVRSD_UINT32, &val);
267 #define _Unwind_SetIP(context, val) \
268 _Unwind_SetGR (context, 15, val | (_Unwind_GetGR (context, 15) & 1))
  /dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
ChannelsTest.java 102 for (int val = 0; val < this.writebufSize / 2; val++) {
103 writebuf = writebuf + ((char) (val + 64));
216 for (int val = 0; val < this.writebufSize / 2; val++) {
217 writebuf.putChar((char) (val + 64));
270 for (int val = 0; val < this.writebufSize / 2; val++)
    [all...]
  /dalvik/vm/oo/
Object.h 717 INLINE void dvmSetFieldBoolean(Object* obj, int offset, bool val) {
718 ((JValue*)BYTE_OFFSET(obj, offset))->i = val;
720 INLINE void dvmSetFieldByte(Object* obj, int offset, s1 val) {
721 ((JValue*)BYTE_OFFSET(obj, offset))->i = val;
723 INLINE void dvmSetFieldShort(Object* obj, int offset, s2 val) {
724 ((JValue*)BYTE_OFFSET(obj, offset))->i = val;
726 INLINE void dvmSetFieldChar(Object* obj, int offset, u2 val) {
727 ((JValue*)BYTE_OFFSET(obj, offset))->i = val;
729 INLINE void dvmSetFieldInt(Object* obj, int offset, s4 val) {
730 ((JValue*)BYTE_OFFSET(obj, offset))->i = val;
    [all...]
  /external/opencore/codecs_v2/audio/gsm_amr/amr_nb/enc/src/
set_sign.cpp 177 Word16 val, min;
183 val = dn[i];
185 if (val >= 0) {
189 val = negate(val);
191 dn[i] = val; // modify dn[] according to the fixed sign
192 dn2[i] = val;
206 val = sub(dn2[j], min);
208 if (val < 0)
252 Word16 val, min local
498 Word16 val; local
    [all...]
  /external/openssl/crypto/x509v3/
v3_ncons.c 106 CONF_VALUE tval, *val;
115 val = sk_CONF_VALUE_value(nval, i);
116 if (!strncmp(val->name, "permitted", 9) && val->name[9])
119 tval.name = val->name + 10;
121 else if (!strncmp(val->name, "excluded", 8) && val->name[8])
124 tval.name = val->name + 9;
131 tval.value = val->value;
  /external/quake/quake/src/QW/client/
snd_mixa.s 150 // int val;
160 // val = (snd_p[i]*snd_vol)>>8;
161 // if (val > 0x7fff)
163 // else if (val < (short)0x8000)
166 // snd_out[i] = val;
180 // val = (snd_p[i+1]*snd_vol)>>8;
181 // if (val > 0x7fff)
183 // else if (val < (short)0x8000)
186 // snd_out[i+1] = val;
  /external/quake/quake/src/WinQuake/
snd_mixa.s 150 // int val;
160 // val = (snd_p[i]*snd_vol)>>8;
161 // if (val > 0x7fff)
163 // else if (val < (short)0x8000)
166 // snd_out[i] = val;
180 // val = (snd_p[i+1]*snd_vol)>>8;
181 // if (val > 0x7fff)
183 // else if (val < (short)0x8000)
186 // snd_out[i+1] = val;
  /frameworks/base/media/libstagefright/codecs/amrnb/enc/src/
set_sign.cpp 177 Word16 val, min;
183 val = dn[i];
185 if (val >= 0) {
189 val = negate(val);
191 dn[i] = val; // modify dn[] according to the fixed sign
192 dn2[i] = val;
206 val = sub(dn2[j], min);
208 if (val < 0)
252 Word16 val, min local
498 Word16 val; local
    [all...]
  /hardware/broadcom/wlan/bcm4329/src/shared/
siutils_priv.h 160 extern uint sb_corereg(si_t *sih, uint coreidx, uint regoff, uint mask, uint val);
163 extern uint32 sb_core_cflags(si_t *sih, uint32 mask, uint32 val);
164 extern void sb_core_cflags_wo(si_t *sih, uint32 mask, uint32 val);
165 extern uint32 sb_core_sflags(si_t *sih, uint32 mask, uint32 val);
201 extern uint32 ai_core_cflags(si_t *sih, uint32 mask, uint32 val);
202 extern void ai_core_cflags_wo(si_t *sih, uint32 mask, uint32 val);
203 extern uint32 ai_core_sflags(si_t *sih, uint32 mask, uint32 val);
204 extern uint ai_corereg(si_t *sih, uint coreidx, uint regoff, uint mask, uint val);
210 extern void ai_write_wrap_reg(si_t *sih, uint32 offset, uint32 val);
  /bootable/recovery/edify/
lexer.l 71 int val;
72 sscanf(yytext+2, "%x", &val);
73 *string_pos++ = val;
  /dalvik/libcore/luni-kernel/src/main/native/
java_lang_System.cpp 35 const char* val = getenv(name); local
36 if (val != NULL) {
37 valueStr = env->NewStringUTF(val);
  /dalvik/tests/003-omnibus-opcodes/src/
MethodCall.java 28 int val = super.tryThing(); local
29 assert(val == 7);
30 return val;
  /external/kernel-headers/original/asm-x86/
mc146818rtc_32.h 91 #define CMOS_WRITE(val, addr) rtc_cmos_write(val, addr)
93 void rtc_cmos_write(unsigned char val, unsigned char addr);
pgtable-2level.h 80 #define __swp_type(x) (((x).val >> 1) & 0x1f)
81 #define __swp_offset(x) ((x).val >> 8)
84 #define __swp_entry_to_pte(x) ((pte_t) { (x).val })
  /external/libxml2/include/libxml/
xmlstring.h 56 xmlChar val);
59 const xmlChar *val);
62 xmlChar *val);
  /external/webkit/JavaScriptCore/runtime/
MathObject.cpp 170 double val = args.at(k).toNumber(exec); local
171 if (isnan(val)) {
175 if (val > result || (val == 0 && result == 0 && !signbit(val)))
176 result = val;
186 double val = args.at(k).toNumber(exec); local
187 if (isnan(val)) {
191 if (val < result || (val == 0 && result == 0 && signbit(val))
    [all...]
  /external/webkit/WebCore/html/
HTMLTitleElement.cpp 69 String val = ""; local
73 val += static_cast<Text*>(n)->data();
76 return val;
  /external/webkit/WebCore/manual-tests/
wordXML-selectall.xml 3 <w:wordDocument xmlns:w="http://schemas.microsoft.com/office/word/2003/2/wordml" xmlns:v="urn:schemas-microsoft-com:vml" xmlns:w10="urn:schemas-microsoft-com:office:word" xmlns:SL="http://schemas.microsoft.com/schemaLibrary/2003/2/core" xmlns:aml="http://schemas.microsoft.com/aml/2001/core" xmlns:wx="http://schemas.microsoft.com/office/word/2003/2/auxHint" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882" xmlns:st1="urn:schemas-microsoft-com:office:smarttags" xml:space="preserve"><o:DocumentProperties></o:DocumentProperties><w:fonts><w:defaultFonts w:ascii="Times New Roman" w:fareast="Times New Roman" w:h-ansi="Times New Roman" w:cs="Times New Roman"/></w:fonts><w:docPr></w:docPr><w:body><wx:sect><w:p><w:pPr></w:pPr><w:r><w:rPr><w:rFonts w:ascii="Helvetica" w:h-ansi="Helvetica" w:cs="Helvetica"/><wx:font wx:val="Helvetica"/><w:sz w:val="24"/><w:sz-cs w:val="24"/></w:rPr><w:t>Simply open this document and "Select all" (cmd-a). That was enough to crash. (…)
  /external/wpa_supplicant/
config_winreg.c 123 DWORD val, buflen; local
126 buflen = sizeof(val);
127 ret = RegQueryValueEx(hk, name, NULL, NULL, (LPBYTE) &val, &buflen);
128 if (ret == ERROR_SUCCESS && buflen == sizeof(val)) {
129 wpa_printf(MSG_DEBUG, TSTR "=%d", name, (int) val);
130 *_val = val;
142 TCHAR *val; local
148 val = os_malloc(buflen);
149 if (val == NULL)
152 ret = RegQueryValueEx(hk, name, NULL, NULL, (LPBYTE) val, &buflen)
559 char val[20]; local
    [all...]

Completed in 76 milliseconds

<<11121314151617181920>>