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

1 2

  /art/compiler/optimizing/
code_generator_utils.cc 24 void CalculateMagicAndShiftForDivRem(int64_t divisor, bool is_long,
53 int64_t p = is_long ? 63 : 31;
54 const uint64_t exp = is_long ? (UINT64_C(1) << 63) : (UINT32_C(1) << 31);
58 uint64_t sign_bit = is_long ? static_cast<uint64_t>(divisor) >> 63 :
91 if (!is_long) {
95 *shift = is_long ? p - 64 : p - 32;
code_generator_utils.h 30 void CalculateMagicAndShiftForDivRem(int64_t divisor, bool is_long, int64_t* magic, int* shift);
  /external/compiler-rt/test/asan/TestCases/
speculative_load.cc 30 bool is_long() const { function in struct:S
35 return is_long() ? _data._l._ptr : _data._s._ch;
  /system/bt/service/common/android/bluetooth/
IBluetoothGattServerCallback.aidl 27 int request_id, int offset, boolean is_long, int handle);
30 int request_id, int offset, boolean is_long, int handle);
  /system/bt/service/doc/
IBluetoothGattServerCallback.txt 43 * the remote device wants to read from. If |is_long| is true, then this
49 * GATT_ERROR_INVALID_OFFSET. If |is_long| is true but this characteristic is
54 in int offset, in boolean is_long,
61 * the remote device wants to read from. If |is_long| is true, then this
67 * GATT_ERROR_INVALID_OFFSET. If |is_long| is true but this descriptor is
72 in int offset, in boolean is_long,
  /system/bt/stack/srvc/
srvc_battery_int.h 63 tGATT_VALUE* p_value, bool is_long,
srvc_dis_int.h 58 tGATT_VALUE* p_value, bool is_long,
srvc_eng.cc 209 if (p_data->is_long) p_rsp->attr_value.offset = p_data->offset;
215 p_data->is_long, p_status);
220 p_data->is_long, p_status);
  /toolchain/binutils/binutils-2.25/opcodes/
d30v-dis.c 34 lookup_opcode (struct d30v_insn *insn, long num, int is_long)
64 if ((!is_long || f->form >= LONG) && (f->modifier == mod))
92 extract_value (long long num, struct d30v_operand *oper, int is_long)
98 if (is_long)
122 int is_long,
138 is_long);
145 if (is_long)
203 val = extract_value (num, oper, is_long);
212 int id = extract_value (num, oper3, is_long);
  /external/valgrind/exp-sgcheck/tests/
bad_percentify.c 349 Bool is_long, caps; local
416 if (0 == n_ls) { is_long = False; }
417 else if (1 == n_ls) { is_long = ( sizeof(void*) == sizeof(Long) ); }
418 else { is_long = True; }
426 if (is_long)
435 if (is_long)
443 if (is_long)
476 if (is_long)
  /system/bt/service/example/heart_rate/
heart_rate_server.h 63 int request_id, int offset, bool is_long,
66 int offset, bool is_long, int handle) override;
  /system/bt/service/ipc/binder/
bluetooth_gatt_server_binder_server.h 70 int request_id, int offset, bool is_long,
74 int request_id, int offset, bool is_long,
bluetooth_gatt_server_binder_server.cc 178 int request_id, int offset, bool is_long, uint16_t handle) {
190 offset, is_long, handle); local
195 int request_id, int offset, bool is_long, uint16_t handle) {
207 offset, is_long, handle); local
  /art/compiler/jni/quick/x86/
calling_convention_x86.cc 157 bool is_long = IsCurrentParamALong(); local
163 if (is_long) {
174 if (is_long) {
181 } else if (is_long) {
  /external/libchrome/base/metrics/
histogram_macros.h 279 #define SCOPED_UMA_HISTOGRAM_TIMER_EXPANDER(name, is_long, key) \
280 SCOPED_UMA_HISTOGRAM_TIMER_UNIQUE(name, is_long, key)
282 #define SCOPED_UMA_HISTOGRAM_TIMER_UNIQUE(name, is_long, key) \
288 if (is_long) { \
  /system/bt/service/
gatt_server.h 56 bool is_long, uint16_t handle) = 0;
65 bool is_long, uint16_t handle) = 0;
207 bool is_long) override;
212 bool is_long) override;
gatt_server.cc 330 const RawAddress& bda, int attribute_handle, int offset, bool is_long) {
343 << " is_long: " << is_long; local
359 is_long, attribute_handle);
363 const RawAddress& bda, int attribute_handle, int offset, bool is_long) {
376 << " is_long: " << is_long; local
392 is_long, attribute_handle);
  /system/bt/service/hal/
bluetooth_gatt_interface.h 143 const RawAddress& bda, int attr_handle, int offset, bool is_long);
147 const RawAddress& bda, int attr_handle, int offset, bool is_long);
fake_bluetooth_gatt_interface.h 109 bool is_long);
113 bool is_long);
fake_bluetooth_gatt_interface.cc 225 int offset, bool is_long) {
229 attr_handle, offset, is_long));
234 int offset, bool is_long) {
238 offset, is_long));
bluetooth_gatt_interface.cc 280 int offset, bool is_long) {
284 << " is_long: " << is_long; local
288 g_interface, conn_id, trans_id, bda, attr_handle, offset, is_long));
293 int offset, bool is_long) {
297 << " is_long: " << is_long; local
301 g_interface, conn_id, trans_id, bda, attr_handle, offset, is_long));
674 int /* offset */, bool /* is_long */) {
681 int /* offset */, bool /* is_long */) {
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
printf.h 42 unsigned int is_long:1; /* l flag. */ member in struct:printf_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
printf.h 42 unsigned int is_long:1; /* l flag. */ member in struct:printf_info
  /system/bt/service/test/
gatt_server_unittest.cc 60 is_long(false),
71 bool is_long; member in struct:bluetooth::__anon113528::TestDelegate::RequestData
83 int request_id, int offset, bool is_long,
89 char_read_req_.is_long = is_long;
96 int request_id, int offset, bool is_long,
102 desc_read_req_.is_long = is_long;
431 EXPECT_FALSE(test_delegate.char_read_req().is_long);
442 EXPECT_TRUE(test_delegate.desc_read_req().is_long);
    [all...]
  /hardware/libhardware/include/hardware/
bt_gatt_server.h 72 int attr_handle, int offset, bool is_long);

Completed in 3670 milliseconds

1 2