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

1 2

  /external/chromium_org/third_party/skia/src/core/
SkMiniData.cpp 9 static bool is_long(uint64_t rep) { function in namespace:__anon19802
28 SkASSERT(is_long(rep));
67 if (is_long(fRep)) {
73 return is_long(fRep) ? reinterpret_cast<const LongData*>( fRep)->data
78 return is_long(fRep) ? reinterpret_cast<const LongData*>( fRep)->len
  /external/bluetooth/bluedroid/stack/srvc/
srvc_battery_int.h 74 extern UINT8 battery_s_read_attr_value (UINT8 clcb_idx, UINT16 handle, tGATT_VALUE *p_value, BOOLEAN is_long, tGATT_STATUS* p_status);
srvc_dis_int.h 74 BOOLEAN is_long, tGATT_STATUS *p_status);
srvc_eng.c 222 if (p_data->is_long)
228 act = dis_read_attr_value(clcb_idx, p_data->handle, &p_rsp->attr_value, p_data->is_long, p_status);
231 act = battery_s_read_attr_value(clcb_idx, p_data->handle, &p_rsp->attr_value, p_data->is_long, p_status);
srvc_battery.c 112 UINT8 battery_s_read_attr_value (UINT8 clcb_idx, UINT16 handle, tGATT_VALUE *p_value, BOOLEAN is_long, tGATT_STATUS* p_status)
128 if (is_long)
srvc_dis.c 114 BOOLEAN is_long, tGATT_STATUS *p_status)
128 is_long == TRUE)
  /external/valgrind/main/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)
  /external/valgrind/main/coregrind/
m_debuglog.c 735 Bool is_long, caps; local
802 if (0 == n_ls) { is_long = False; }
803 else if (1 == n_ls) { is_long = ( sizeof(void*) == sizeof(Long) ); }
804 else { is_long = True; }
812 if (is_long)
821 if (is_long)
829 if (is_long)
873 if (is_long)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/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.11-4.8/sysroot/usr/include/
printf.h 42 unsigned int is_long:1; /* l flag. */ member in struct:printf_info
  /hardware/libhardware/include/hardware/
bt_gatt_server.h 87 int attr_handle, int offset, bool is_long);
  /external/bluetooth/bluedroid/stack/gap/
gap_ble.c 222 tGATT_STATUS gap_read_attr_value (UINT16 handle, tGATT_VALUE *p_value, BOOLEAN is_long)
234 is_long == TRUE)
284 if (p_data->is_long)
289 status = gap_read_attr_value(p_data->handle, &p_rsp->attr_value, p_data->is_long);
  /external/chromium_org/third_party/libxml/src/
triop.h 107 void trio_set_long TRIO_PROTO((trio_pointer_t ref, int is_long));
  /external/libxml2/
triop.h 107 void trio_set_long TRIO_PROTO((trio_pointer_t ref, int is_long));
  /art/compiler/dex/portable/
mir_to_gbc.h 121 ::llvm::Value* GenDivModOp(bool is_div, bool is_long, ::llvm::Value* src1,
123 ::llvm::Value* GenArithOp(OpKind op, bool is_long, ::llvm::Value* src1,
  /external/chromium_org/third_party/cython/src/Cython/Compiler/
Code.pxd 60 cdef public bint is_long
  /external/valgrind/main/VEX/switchback/
test_emfloat.c 255 Bool is_long; local
279 is_long = False;
307 is_long = True;
313 if (is_long)
321 if (is_long)
336 if (is_long)
    [all...]
  /art/compiler/dex/quick/arm/
codegen_arm.h 106 bool GenInlinedCas(CallInfo* info, bool is_long, bool is_object);
107 bool GenInlinedMinMax(CallInfo* info, bool is_min, bool is_long);
int_arm.cc 731 bool ArmMir2Lir::GenInlinedMinMax(CallInfo* info, bool is_min, bool is_long) {
733 if (is_long) {
796 bool ArmMir2Lir::GenInlinedCas(CallInfo* info, bool is_long, bool is_object) {
803 // If is_long, high half is in info->args[5]
804 RegLocation rl_src_new_value = info->args[is_long ? 6 : 5]; // int, long or Object
805 // If is_long, high half is in info->args[7]
821 if (is_long) {
855 if (!is_long) {
878 if (!is_long) {
899 if (is_long) {
    [all...]
  /art/compiler/dex/quick/mips/
codegen_mips.h 104 bool GenInlinedCas(CallInfo* info, bool is_long, bool is_object);
105 bool GenInlinedMinMax(CallInfo* info, bool is_min, bool is_long);
fp_mips.cc 232 bool MipsMir2Lir::GenInlinedMinMax(CallInfo* info, bool is_min, bool is_long) {
  /art/compiler/dex/quick/arm64/
int_arm64.cc 658 bool Arm64Mir2Lir::GenInlinedMinMax(CallInfo* info, bool is_min, bool is_long) {
661 RegLocation rl_src2 = (is_long) ? info->args[2] : info->args[1];
662 rl_src1 = (is_long) ? LoadValueWide(rl_src1, kCoreReg) : LoadValue(rl_src1, kCoreReg);
663 rl_src2 = (is_long) ? LoadValueWide(rl_src2, kCoreReg) : LoadValue(rl_src2, kCoreReg);
664 RegLocation rl_dest = (is_long) ? InlineTargetWide(info) : InlineTarget(info);
667 NewLIR4((is_long) ? WIDE(kA64Csel4rrrc) : kA64Csel4rrrc, rl_result.reg.GetReg(),
669 (is_long) ? StoreValueWide(rl_dest, rl_result) :StoreValue(rl_dest, rl_result);
705 bool Arm64Mir2Lir::GenInlinedCas(CallInfo* info, bool is_long, bool is_object) {
711 // If is_long, high half is in info->args[5]
712 RegLocation rl_src_new_value = info->args[is_long ? 6 : 5]; // int, long or Objec
    [all...]
codegen_arm64.h 160 bool GenInlinedCas(CallInfo* info, bool is_long, bool is_object) OVERRIDE;
161 bool GenInlinedMinMax(CallInfo* info, bool is_min, bool is_long) OVERRIDE;
  /art/compiler/dex/quick/x86/
int_x86.cc 525 void X86Mir2Lir::CalculateMagicAndShift(int64_t divisor, int64_t& magic, int& shift, bool is_long) {
552 int64_t p = (is_long) ? 63 : 31;
553 const uint64_t exp = (is_long) ? 0x8000000000000000ULL : 0x80000000U;
557 uint64_t tmp = exp + ((is_long) ? static_cast<uint64_t>(divisor) >> 63 :
589 if (!is_long) {
593 shift = (is_long) ? p - 64 : p - 32;
654 CalculateMagicAndShift((int64_t)imm, magic, shift, false /* is_long */);
802 bool X86Mir2Lir::GenInlinedMinMax(CallInfo* info, bool is_min, bool is_long) {
805 if (is_long && cu_->instruction_set == kX86) {
811 RegLocation rl_src2 = (is_long) ? info->args[2] : info->args[1]
    [all...]
codegen_x86.h 159 bool GenInlinedCas(CallInfo* info, bool is_long, bool is_object) OVERRIDE;
160 bool GenInlinedMinMax(CallInfo* info, bool is_min, bool is_long) OVERRIDE;
    [all...]

Completed in 1048 milliseconds

1 2