/external/webp/src/utils/ |
utils.h | 60 static WEBP_INLINE void PutLE16(uint8_t* const data, int val) { 61 assert(val < (1 << 16)); 62 data[0] = (val >> 0); 63 data[1] = (val >> 8); 66 static WEBP_INLINE void PutLE24(uint8_t* const data, int val) { 67 assert(val < (1 << 24)); 68 PutLE16(data, val & 0xffff); 69 data[2] = (val >> 16); 72 static WEBP_INLINE void PutLE32(uint8_t* const data, uint32_t val) { 73 PutLE16(data, (int)(val & 0xffff)) [all...] |
/external/openssh/openbsd-compat/ |
inet_aton.c | 72 struct in_addr val; 74 if (inet_aton(cp, &val)) 75 return (val.s_addr); 90 u_int32_t val; local 105 val = 0; base = 10; 115 val = (val * base) + (c - '0'); 118 val = (val << 4) | 133 *pp++ = val; [all...] |
/external/qemu/hw/ |
pci_host.h | 42 static void pci_host_data_writeb(void* opaque, pci_addr_t addr, uint32_t val) 46 PCI_DPRINTF("writeb addr " TARGET_FMT_plx " val %x\n", 47 (target_phys_addr_t)addr, val); 49 pci_data_write(s->bus, s->config_reg | (addr & 3), val, 1); 52 static void pci_host_data_writew(void* opaque, pci_addr_t addr, uint32_t val) 56 val = bswap16(val); 58 PCI_DPRINTF("writew addr " TARGET_FMT_plx " val %x\n", 59 (target_phys_addr_t)addr, val); 61 pci_data_write(s->bus, s->config_reg | (addr & 3), val, 2) 79 uint32_t val; local 92 uint32_t val; local 107 uint32_t val; local [all...] |
/bionic/libc/kernel/common/linux/ |
preempt.h | 24 #define add_preempt_count(val) do { preempt_count() += (val); } while (0) 25 #define sub_preempt_count(val) do { preempt_count() -= (val); } while (0)
|
/development/ndk/platforms/android-3/include/linux/ |
preempt.h | 18 #define add_preempt_count(val) do { preempt_count() += (val); } while (0) 19 #define sub_preempt_count(val) do { preempt_count() -= (val); } while (0)
|
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/sqlite/ |
SQLValue.cpp | 34 SQLValue::SQLValue(const SQLValue& val) 35 : m_type(val.m_type) 36 , m_number(val.m_number) 37 , m_string(val.m_string.isolatedCopy())
|
/external/clang/test/Analysis/inlining/ |
eager-reclamation-path-notes.c | 5 void use(int *ptr, int val) { 6 *ptr = val; // expected-warning {{Dereference of null pointer (loaded from variable 'ptr')}} 27 void use2(int *ptr, int val) { 28 *ptr = val; // expected-warning {{Dereference of null pointer (loaded from variable 'ptr')}} [all...] |
/external/compiler-rt/lib/asan/lit_tests/TestCases/ |
use-after-scope-dtor-order.cc | 6 explicit IntHolder(int *val = 0) : val_(val) { } 12 void set(int *val) { val_ = val; }
|
/external/libvpx/libvpx/vpx_ports/ |
asm_offsets.h | 22 #define DEFINE(sym, val) asm("\n" #sym " EQU %0" : : "i" (val)) 26 #define DEFINE(sym, val) const int sym = val
|
/external/smali/baksmali/src/main/java/org/jf/baksmali/Renderers/ |
ShortRenderer.java | 36 public static void writeTo(IndentingWriter writer, short val) throws IOException { 37 if (val < 0) { 39 writer.printUnsignedLongAsHex(-val); 43 writer.printUnsignedLongAsHex(val);
|
/external/stlport/test/unit/ |
math_aux.h | 19 bool are_equals(_Tp val, _Tp ref) { 20 if (val < ref) { 21 return (ref - val) <= __STD numeric_limits<_Tp>::epsilon(); 24 return (val - ref) <= __STD numeric_limits<_Tp>::epsilon();
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/ |
imgprocutil.h | 27 inline int clamp(int min, int val, int max) { 28 return val < min ? min : (val > max ? max : val);
|
/ndk/tests/device/test-gnustl-full/unit/ |
math_aux.h | 19 bool are_equals(_Tp val, _Tp ref) { 20 if (val < ref) { 21 return (ref - val) <= __STD numeric_limits<_Tp>::epsilon(); 24 return (val - ref) <= __STD numeric_limits<_Tp>::epsilon();
|
/ndk/tests/device/test-stlport/unit/ |
math_aux.h | 19 bool are_equals(_Tp val, _Tp ref) { 20 if (val < ref) { 21 return (ref - val) <= __STD numeric_limits<_Tp>::epsilon(); 24 return (val - ref) <= __STD numeric_limits<_Tp>::epsilon();
|
/prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/ |
preempt.h | 18 #define add_preempt_count(val) do { preempt_count() += (val); } while (0) 19 #define sub_preempt_count(val) do { preempt_count() -= (val); } while (0)
|
/prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/ |
preempt.h | 18 #define add_preempt_count(val) do { preempt_count() += (val); } while (0) 19 #define sub_preempt_count(val) do { preempt_count() -= (val); } while (0)
|
/prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/ |
preempt.h | 18 #define add_preempt_count(val) do { preempt_count() += (val); } while (0) 19 #define sub_preempt_count(val) do { preempt_count() -= (val); } while (0)
|
/prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/ |
preempt.h | 18 #define add_preempt_count(val) do { preempt_count() += (val); } while (0) 19 #define sub_preempt_count(val) do { preempt_count() -= (val); } while (0)
|
/prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/ |
preempt.h | 18 #define add_preempt_count(val) do { preempt_count() += (val); } while (0) 19 #define sub_preempt_count(val) do { preempt_count() -= (val); } while (0)
|
/prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/ |
preempt.h | 18 #define add_preempt_count(val) do { preempt_count() += (val); } while (0) 19 #define sub_preempt_count(val) do { preempt_count() -= (val); } while (0)
|
/prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/linux/ |
preempt.h | 18 #define add_preempt_count(val) do { preempt_count() += (val); } while (0) 19 #define sub_preempt_count(val) do { preempt_count() -= (val); } while (0)
|
/prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/linux/ |
preempt.h | 18 #define add_preempt_count(val) do { preempt_count() += (val); } while (0) 19 #define sub_preempt_count(val) do { preempt_count() -= (val); } while (0)
|
/prebuilts/ndk/6/platforms/android-3/arch-x86/usr/include/linux/ |
preempt.h | 18 #define add_preempt_count(val) do { preempt_count() += (val); } while (0) 19 #define sub_preempt_count(val) do { preempt_count() -= (val); } while (0)
|
/prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/linux/ |
preempt.h | 18 #define add_preempt_count(val) do { preempt_count() += (val); } while (0) 19 #define sub_preempt_count(val) do { preempt_count() -= (val); } while (0)
|
/prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/linux/ |
preempt.h | 18 #define add_preempt_count(val) do { preempt_count() += (val); } while (0) 19 #define sub_preempt_count(val) do { preempt_count() -= (val); } while (0)
|