/external/elfutils/src/ |
unaligned.h | 58 /* Macros to store value at unaligned address. */ 59 #define store_2ubyte_unaligned(ptr, value) \ 60 (void) (((union u_2ubyte_unaligned *) (ptr))->u = target_bswap_16 (value)) 61 #define store_4ubyte_unaligned(ptr, value) \ 62 (void) (((union u_4ubyte_unaligned *) (ptr))->u = target_bswap_32 (value)) 63 #define store_8ubyte_unaligned(ptr, value) \ 64 (void) (((union u_8ubyte_unaligned *) (ptr))->u = target_bswap_64 (value)) 67 /* Macros to add value to unaligned address. This is a bit more 68 complicated since the value must be read from memory and eventually 71 # define add_2ubyte_unaligned(ptr, value) \ [all...] |
/development/ide/eclipse/ |
android-formatting.xml | 4 <setting id="org.eclipse.jdt.core.formatter.align_type_members_on_columns" value="false"/> 5 <setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_allocation_expression" value="16"/> 6 <setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_enum_constant" value="16"/> 7 <setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_explicit_constructor_call" value="16"/> 8 <setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_method_invocation" value="16"/> 9 <setting id="org.eclipse.jdt.core.formatter.alignment_for_arguments_in_qualified_allocation_expression" value="16"/> 10 <setting id="org.eclipse.jdt.core.formatter.alignment_for_assignment" value="0"/> 11 <setting id="org.eclipse.jdt.core.formatter.alignment_for_binary_expression" value="16"/> 12 <setting id="org.eclipse.jdt.core.formatter.alignment_for_compact_if" value="16"/> 13 <setting id="org.eclipse.jdt.core.formatter.alignment_for_conditional_expression" value="80"/ [all...] |
/external/proguard/src/proguard/evaluation/value/ |
ParticularLongValue.java | 21 package proguard.evaluation.value; 24 * This LongValue represents a particular long value. 30 private final long value; field in class:ParticularLongValue 34 * Creates a new particular long value. 36 public ParticularLongValue(long value) 38 this.value = value; 44 public long value() method in class:ParticularLongValue 46 return value; 54 return new ParticularLongValue(-value); [all...] |
/bionic/libc/kernel/arch-x86/asm/ |
io_32.h | 25 #define __BUILDIO(bwl,bw,type) static inline void out##bwl(unsigned type value, int port) { out##bwl##_local(value, port); } static inline unsigned type in##bwl(int port) { return in##bwl##_local(port); } 26 #define BUILDIO(bwl,bw,type) static inline void out##bwl##_local(unsigned type value, int port) { __asm__ __volatile__("out" #bwl " %" #bw "0, %w1" : : "a"(value), "Nd"(port)); } static inline unsigned type in##bwl##_local(int port) { unsigned type value; __asm__ __volatile__("in" #bwl " %w1, %" #bw "0" : "=a"(value) : "Nd"(port)); return value; } static inline void out##bwl##_local_p(unsigned type value, int port) { out##bwl##_local(value, port); slow_down_io(); } static inline unsigned type in##bwl##_local_p(int port) { unsigned type value = in##bwl##_local(port); slow_down_io(); return value; } __BUILDIO(bwl,bw,type) static inli (…) [all...] |
/external/icu4c/layoutex/ |
LXUtilities.cpp | 17 le_int8 LXUtilities::highBit(le_int32 value) 19 if (value <= 0) { 25 if (value >= 1 << 16) { 26 value >>= 16; 30 if (value >= 1 << 8) { 31 value >>= 8; 35 if (value >= 1 << 4) { 36 value >>= 4; 40 if (value >= 1 << 2) { 41 value >>= 2 [all...] |
/ndk/build/platforms/android-5/arch-x86/usr/include/asm/ |
io_32.h | 25 #define __BUILDIO(bwl,bw,type) static inline void out##bwl(unsigned type value, int port) { out##bwl##_local(value, port); } static inline unsigned type in##bwl(int port) { return in##bwl##_local(port); } 26 #define BUILDIO(bwl,bw,type) static inline void out##bwl##_local(unsigned type value, int port) { __asm__ __volatile__("out" #bwl " %" #bw "0, %w1" : : "a"(value), "Nd"(port)); } static inline unsigned type in##bwl##_local(int port) { unsigned type value; __asm__ __volatile__("in" #bwl " %w1, %" #bw "0" : "=a"(value) : "Nd"(port)); return value; } static inline void out##bwl##_local_p(unsigned type value, int port) { out##bwl##_local(value, port); slow_down_io(); } static inline unsigned type in##bwl##_local_p(int port) { unsigned type value = in##bwl##_local(port); slow_down_io(); return value; } __BUILDIO(bwl,bw,type) static inli (…) [all...] |
/ndk/build/platforms/android-8/arch-x86/usr/include/asm/ |
io_32.h | 25 #define __BUILDIO(bwl,bw,type) static inline void out##bwl(unsigned type value, int port) { out##bwl##_local(value, port); } static inline unsigned type in##bwl(int port) { return in##bwl##_local(port); } 26 #define BUILDIO(bwl,bw,type) static inline void out##bwl##_local(unsigned type value, int port) { __asm__ __volatile__("out" #bwl " %" #bw "0, %w1" : : "a"(value), "Nd"(port)); } static inline unsigned type in##bwl##_local(int port) { unsigned type value; __asm__ __volatile__("in" #bwl " %w1, %" #bw "0" : "=a"(value) : "Nd"(port)); return value; } static inline void out##bwl##_local_p(unsigned type value, int port) { out##bwl##_local(value, port); slow_down_io(); } static inline unsigned type in##bwl##_local_p(int port) { unsigned type value = in##bwl##_local(port); slow_down_io(); return value; } __BUILDIO(bwl,bw,type) static inli (…) [all...] |
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/utils/ |
ArrayHelper.java | 25 * Swaps an unsigned value around, and puts the result in an array that can be sent to a device. 26 * @param value The value to swap. 28 * @param offset the offset in the array where to put the swapped value. 31 public static void swap32bitsToArray(int value, byte[] dest, int offset) { 32 dest[offset] = (byte)(value & 0x000000FF); 33 dest[offset + 1] = (byte)((value & 0x0000FF00) >> 8); 34 dest[offset + 2] = (byte)((value & 0x00FF0000) >> 16); 35 dest[offset + 3] = (byte)((value & 0xFF000000) >> 24); 40 * @param value the array containing the in [all...] |
/dalvik/dx/src/com/android/dx/dex/file/ |
StringDataItem.java | 29 /** {@code non-null;} the string value */ 30 private final CstUtf8 value; field in class:StringDataItem 35 * @param value {@code non-null;} the string value 37 public StringDataItem(CstUtf8 value) { 38 super(1, writeSize(value)); 40 this.value = value; 44 * Gets the write size for a given value. 46 * @param value {@code non-null;} the string valu [all...] |
/dalvik/libcore/luni/src/main/java/java/io/ |
EmulatedFieldsForDumping.java | 59 * Find and set the byte value of a given field named <code>name</code> in 64 * @param value 65 * New value for the field. 68 public void put(String name, byte value) { 69 emulatedFields.put(name, value); 73 * Find and set the char value of a given field named <code>name</code> in 78 * @param value 79 * New value for the field. 82 public void put(String name, char value) { 83 emulatedFields.put(name, value); [all...] |
/dalvik/libcore/security/src/main/java/org/bouncycastle/util/ |
BigIntegers.java | 11 * Return the passed in value as an unsigned byte array. 13 * @param value value to be converted. 17 BigInteger value) 19 byte[] bytes = value.toByteArray();
|
/external/clearsilver/man/man3/ |
dictReleaseLock.3 | 14 dictReleaseLock - release lock on value. 25 dict - dictionary containing value to release. 30 Releases the lock on the value associated with <lock>. Once 32 be called for the value (see dictCleanup()). 36 .SH "RETURN VALUE"
|
hdf_set_int_value.3 | 14 hdf_set_int_value - Set the value of a named node to a number 20 NEOERR* hdf_set_int_value (HDF *hdf, const char *name, int value); 29 value -> the value to set the node to 36 .SH "RETURN VALUE"
|
dictModifyValue.3 | 28 id - identifier of value 30 new - function to call to create new value (may be NULL) 32 update - function to call to modify value (if NULL, the old 34 value is freed, and <new> is used) 39 Finds <id>'s value and calls <update>. If <id> is 40 not in <dict>, calls <new> to obtain a new value. 44 .SH "RETURN VALUE"
|
dictSearch.3 | 14 dictSearch - search for value in dictionary. 29 plock - place for value lock (or NULL). 32 Searches for <id> in <dict>, and returns value if 35 the returned value. Until this lock is passed to 36 dictReleaseLock(), the value will not be passed to the 41 .SH "RETURN VALUE" 42 plock - set to value lock.
|
/external/opencore/oscl/oscl/osclutil/src/ |
oscl_math.inl | 19 OSCL_COND_EXPORT_REF OSCL_INLINE double oscl_log(double value) 21 return (double) log(value); 24 OSCL_COND_EXPORT_REF OSCL_INLINE double oscl_log10(double value) 26 return (double) log10(value); 29 OSCL_COND_EXPORT_REF OSCL_INLINE double oscl_sqrt(double value) 31 return (double) sqrt(value); 39 OSCL_COND_EXPORT_REF OSCL_INLINE double oscl_exp(double value) 41 return (double) exp(value); 44 OSCL_COND_EXPORT_REF OSCL_INLINE double oscl_sin(double value) 46 return (double) sin(value); [all...] |
/external/proguard/src/proguard/evaluation/ |
TracedStack.java | 23 import proguard.evaluation.value.Value; 29 * The stack stores a given producer Value along with each Value it stores. 30 * It then generalizes a given collected Value with the producer Value 31 * of each Value it loads. The producer Value and the initial collected Value 32 * can be set; the generalized collected Value can be retrieved 174 Value value = super.pop(); local 318 Value value = this.values[index]; local [all...] |
/external/fdlibm/ |
s_ldexp.c | 18 double ieee_ldexp(double value, int exp) 20 double ieee_ldexp(value, exp) 21 double value; int exp; 24 if(!ieee_finite(value)||value==0.0) return value; 25 value = ieee_scalbn(value,exp); 26 if(!ieee_finite(value)||value==0.0) errno = ERANGE [all...] |
/external/icu4c/data/misc/ |
icudata.rc | 48 VALUE "Comments", ICU_WEBSITE "\0" 49 VALUE "CompanyName", "IBM Corporation and others\0" 50 VALUE "FileDescription", "ICU Data DLL\0" 51 VALUE "FileVersion", CommaVersionString(U_ICU_VERSION_MAJOR_NUM, U_ICU_VERSION_MINOR_NUM, U_ICU_VERSION_PATCHLEVEL_NUM, U_ICU_VERSION_BUILDLEVEL_NUM) 52 VALUE "LegalCopyright", U_COPYRIGHT_STRING "\0" 53 VALUE "OriginalFilename", "icudt" U_ICU_VERSION_SHORT ".dll\0" 54 VALUE "PrivateBuild", "\0" 55 VALUE "ProductName", "International Components for Unicode\0" 56 VALUE "ProductVersion", CommaVersionString(U_ICU_VERSION_MAJOR_NUM, U_ICU_VERSION_MINOR_NUM, U_ICU_VERSION_PATCHLEVEL_NUM, U_ICU_VERSION_BUILDLEVEL_NUM) 57 VALUE "SpecialBuild", "\0 [all...] |
/external/webkit/WebCore/manual-tests/ |
clear-input-file.html | 8 document.getElementById("file").value = ""; 12 document.getElementById("file").value = null; 16 document.getElementById("file").value = "x"; 23 <input type="button" value="clear with reset()" onclick="clearWithReset()"> 24 <input type="button" value="clear by setting value to ''" onclick="clearBySettingValue()"></p> 25 <p>Or press this button that should clear the file, but won't, due to <a href="http://bugs.webkit.org/show_bug.cgi?id=13448">bug 13448</a>: <input type="button" value="clear by setting value to null" onclick="clearBySettingValueToNull()"></p> 26 <p>Or press this button to verify we can't set to a non-empty value: <input type="button" value="clear by setting value to 'x'" onclick="clearBySettingValueToX()"></p [all...] |
/frameworks/base/core/tests/coretests/src/android/os/ |
SystemPropertiesTest.java | 30 String value; local 33 value = SystemProperties.get(KEY, "default"); 34 assertEquals("default", value); 37 value = SystemProperties.get(KEY, "default"); 38 assertEquals("AAA", value); 40 value = SystemProperties.get(KEY); 41 assertEquals("AAA", value); 44 value = SystemProperties.get(KEY, "default"); 45 assertEquals("default", value); 47 value = SystemProperties.get(KEY) [all...] |
/external/bluetooth/glib/gio/ |
gioenumtypes.c.template | 11 /*** BEGIN value-header ***/ 19 static const G@Type@Value values[] = { 20 /*** END value-header ***/ 22 /*** BEGIN value-production ***/ 24 /*** END value-production ***/ 26 /*** BEGIN value-tail ***/ 37 /*** END value-tail ***/
|
/external/proguard/src/proguard/optimize/evaluation/ |
StoringInvocationUnit.java | 26 import proguard.evaluation.value.*; 45 * Creates a new StoringInvocationUnit with the given value factory. 54 * Creates a new StoringInvocationUnit with the given value factory, for 74 ReferenceValue value) 81 generalizeFieldClassValue((Field)referencedMember, value); 89 Value value) 96 generalizeFieldValue((Field)referencedMember, value); 105 Value value) [all...] |
/external/srec/shared/include/ |
ESR_Session.h | 44 * Returns session property value. 47 * @param value Property value 50 ESR_ReturnCode(*getProperty)(const LCHAR* name, void** value, VariableTypes type); 52 * Returns the type of a property value. 55 * @param type [out] Value type 59 * Returns copy of session property value. 62 * @param value Property value 64 ESR_ReturnCode(*getInt)(const LCHAR* name, int* value); [all...] |
/external/webkit/JavaScriptCore/API/ |
JSValueRef.h | 38 @constant kJSTypeUndefined The unique undefined value. 39 @constant kJSTypeNull The unique null value. 40 @constant kJSTypeBoolean A primitive boolean value, one of true or false. 41 @constant kJSTypeNumber A primitive number value. 42 @constant kJSTypeString A primitive string value. 43 @constant kJSTypeObject An object value (meaning that this JSValueRef is a JSObjectRef). 60 @abstract Returns a JavaScript value's type. 62 @param value The JSValue whose type you want to obtain. 63 @result A value of type JSType that identifies value's type [all...] |