HomeSort by relevance Sort by last modified time
    Searched refs:_val (Results 1 - 25 of 86) sorted by null

1 2 3 4

  /external/chromium-trace/catapult/devil/devil/utils/lazy/
weak_constant.py 19 self._val = None
24 return self._val
27 self._val = self._initializer()
29 return self._val
  /external/libmojo/third_party/catapult/devil/devil/utils/lazy/
weak_constant.py 19 self._val = None
24 return self._val
27 self._val = self._initializer()
29 return self._val
  /device/linaro/bootloader/arm-trusted-firmware/include/common/
asm_macros.S 172 .macro _mov_imm16 _reg, _val, _shift
173 .if (\_val >> \_shift) & 0xffff
174 .if (\_val & (1 << \_shift - 1))
175 movk \_reg, (\_val >> \_shift) & 0xffff, LSL \_shift
177 mov \_reg, \_val & (0xffff << \_shift)
188 .macro mov_imm _reg, _val
189 .if (\_val) == 0
192 _mov_imm16 \_reg, (\_val), 0
193 _mov_imm16 \_reg, (\_val), 16
194 _mov_imm16 \_reg, (\_val), 3
    [all...]
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/
bcmendian.h 102 uint16 _val = (val); \
103 BCMSWAP16(_val); \
107 uint32 _val = (val); \
108 BCMSWAP32(_val); \
112 uint32 _val = (val); \
113 BCMSWAP32BY16(_val); \
126 uint16 _val = (val); \
128 _bytes[0] = _val & 0xff; \
129 _bytes[1] = _val >> 8; \
133 uint32 _val = (val);
    [all...]
bcmdefs.h 154 #define PHYSADDRHISET(_pa, _val) \
156 (_pa).hiaddr = (_val); \
159 #define PHYSADDRLOSET(_pa, _val) \
161 (_pa).loaddr = (_val); \
167 #define PHYSADDRHISET(_pa, _val)
169 #define PHYSADDRLOSET(_pa, _val) \
171 (_pa) = (_val); \
  /external/elfutils/src/
unaligned.h 85 uint16_t _val = bswap_16 (_ptr->u) + (value); \
86 _ptr->u = bswap_16 (_val); \
91 uint32_t _val = bswap_32 (_ptr->u) + (value); \
92 _ptr->u = bswap_32 (_val); \
97 uint64_t _val = bswap_64 (_ptr->u) + (value); \
98 _ptr->u = bswap_64 (_val); \
  /external/valgrind/include/
pub_tool_basics.h 146 _val and possible _valEx hold the return value. Whether
150 _val holds the error code.
154 _val holds the return value.
156 _val holds the error code.
174 _val and _val2 hold the return value.
176 _val holds the error code.
182 UWord _val; member in struct:__anon37693
192 UWord _val; member in struct:__anon37694
216 UWord _val; member in struct:__anon37697
235 return sr._isError ? 0 : sr._val;
    [all...]
  /device/google/contexthub/firmware/os/inc/
syscall.h 45 #define SYSCALL_CUT_SCALE_SHIFT(_val, _cut, _shift) ((((uint32_t)(_val)) & ((1UL << (_cut)) - 1)) << (_shift))
  /external/libopus/celt/
entenc.h 56 void ec_enc_bit_logp(ec_enc *_this,int _val,unsigned _logp);
89 _val: The bits to encode (in the least _nbits significant bits).
93 void ec_enc_patch_initial_bits(ec_enc *_this,unsigned _val,unsigned _nbits);
mathops.c 40 /*Compute floor(sqrt(_val)) with exact arithmetic.
42 unsigned isqrt32(opus_uint32 _val){
49 (g+b)*(g+b) <= _val, and add it to the solution g.*/
51 bshift=(EC_ILOG(_val)-1)>>1;
56 if(t<=_val){
58 _val-=t;
entenc.c 151 void ec_enc_bit_logp(ec_enc *_this,int _val,unsigned _logp){
159 if(_val)_this->val=l+r;
160 _this->rng=_val?s:r;
214 void ec_enc_patch_initial_bits(ec_enc *_this,unsigned _val,unsigned _nbits){
222 _this->buf[0]=(unsigned char)((_this->buf[0]&~mask)|_val<<shift);
226 _this->rem=(_this->rem&~mask)|_val<<shift;
231 (opus_uint32)_val<<(EC_CODE_SHIFT+shift);
  /external/syslinux/gpxe/src/arch/i386/include/
setjmp.h 34 #define rmlongjmp( _env, _val ) do { \
37 longjmp ( (_env)->env, (_val) ); \
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/layers/
vk_layer_config.h 33 void setLayerOption(const char *_option, const char *_val);
vk_layer_config.cpp 40 void setOption(const std::string &_option, const std::string &_val);
168 void setLayerOption(const char *_option, const char *_val) { g_configFileObj.setOption(_option, _val); }
186 void ConfigFile::setOption(const std::string &_option, const std::string &_val) {
191 m_valueMap[_option] = _val;
  /external/strace/tests/
quotactl.h 50 # define QCMD_CMD(_val) ((unsigned) (_val) >> SUBCMDSHIFT)
54 # define QCMD_TYPE(_val) ((unsigned) (_val) & SUBCMDMASK)
  /external/strace/tests-m32/
quotactl.h 50 # define QCMD_CMD(_val) ((unsigned) (_val) >> SUBCMDSHIFT)
54 # define QCMD_TYPE(_val) ((unsigned) (_val) & SUBCMDMASK)
  /external/strace/tests-mx32/
quotactl.h 50 # define QCMD_CMD(_val) ((unsigned) (_val) >> SUBCMDSHIFT)
54 # define QCMD_TYPE(_val) ((unsigned) (_val) & SUBCMDMASK)
  /external/brotli/enc/
port.h 68 #define BROTLI_UNALIGNED_STORE32(_p, _val) \
69 (*(uint32_t *)(_p) = (_val))
70 #define BROTLI_UNALIGNED_STORE64(_p, _val) \
71 (*(uint64_t *)(_p) = (_val))
91 #define BROTLI_UNALIGNED_STORE32(_p, _val) \
92 (*(uint32_t *)(_p) = (_val))
  /external/valgrind/coregrind/
pub_core_debuginfo.h 186 # define SET_TOCPTR_AVMA(_sym_avmas, _val) (_sym_avmas).tocptr = (_val)
189 # define SET_TOCPTR_AVMA(_sym_avmas, _val) /* */
194 # define SET_LOCAL_EP_AVMA(_sym_avmas, _val) (_sym_avmas).local_ep = (_val)
197 # define SET_LOCAL_EP_AVMA(_sym_avmas, _val) /* */
m_syscall.c 50 res._val = v0;
59 res._val = v0;
68 r._val = err;
76 r._val = res;
84 r._val = res;
115 res._val = (UInt)(-val);
117 res._val = (UInt)val;
127 res._val = (ULong)(-val);
129 res._val = (ULong)val;
139 res._val = val
    [all...]
  /external/ipsec-tools/src/libipsec/
policy_parse.h 87 struct _val { struct in union:YYSTYPE
  /external/vulkan-validation-layers/layers/
vk_layer_config.cpp 42 void setOption(const std::string &_option, const std::string &_val);
132 void setLayerOption(const char *_option, const char *_val) { g_configFileObj.setOption(_option, _val); }
199 void ConfigFile::setOption(const std::string &_option, const std::string &_val) {
216 m_valueMap[_option] = _val;
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/build-android/generated/common/
vk_layer_config.cpp 40 void setOption(const std::string &_option, const std::string &_val);
168 void setLayerOption(const char *_option, const char *_val) { g_configFileObj.setOption(_option, _val); }
186 void ConfigFile::setOption(const std::string &_option, const std::string &_val) {
191 m_valueMap[_option] = _val;
  /external/protobuf/src/google/protobuf/stubs/
port.h 237 #define GOOGLE_UNALIGNED_STORE16(_p, _val) (*reinterpret_cast<uint16 *>(_p) = (_val))
238 #define GOOGLE_UNALIGNED_STORE32(_p, _val) (*reinterpret_cast<uint32 *>(_p) = (_val))
239 #define GOOGLE_UNALIGNED_STORE64(_p, _val) (*reinterpret_cast<uint64 *>(_p) = (_val))
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
port.h 237 #define GOOGLE_UNALIGNED_STORE16(_p, _val) (*reinterpret_cast<uint16 *>(_p) = (_val))
238 #define GOOGLE_UNALIGNED_STORE32(_p, _val) (*reinterpret_cast<uint32 *>(_p) = (_val))
239 #define GOOGLE_UNALIGNED_STORE64(_p, _val) (*reinterpret_cast<uint64 *>(_p) = (_val))

Completed in 2775 milliseconds

1 2 3 4