/prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/linux/ |
pfkeyv2.h | 51 uint64_t sadb_lifetime_bytes; 52 uint64_t sadb_lifetime_addtime; 53 uint64_t sadb_lifetime_usetime; 76 uint64_t sadb_ident_id; 108 uint64_t sadb_comb_soft_bytes; 109 uint64_t sadb_comb_hard_bytes; 110 uint64_t sadb_comb_soft_addtime; 111 uint64_t sadb_comb_hard_addtime; 112 uint64_t sadb_comb_soft_usetime; 113 uint64_t sadb_comb_hard_usetime [all...] |
/prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/linux/ |
pfkeyv2.h | 51 uint64_t sadb_lifetime_bytes; 52 uint64_t sadb_lifetime_addtime; 53 uint64_t sadb_lifetime_usetime; 76 uint64_t sadb_ident_id; 108 uint64_t sadb_comb_soft_bytes; 109 uint64_t sadb_comb_hard_bytes; 110 uint64_t sadb_comb_soft_addtime; 111 uint64_t sadb_comb_hard_addtime; 112 uint64_t sadb_comb_soft_usetime; 113 uint64_t sadb_comb_hard_usetime [all...] |
/external/libvpx/libvpx/nestegg/src/ |
nestegg.c | 144 uint64_t id; 155 uint64_t u; 274 uint64_t last_id; 275 uint64_t last_size; 289 uint64_t last_id; 290 uint64_t last_size; 299 uint64_t track; 300 uint64_t timecode; 307 uint64_t id; 533 ne_bare_read_vint(nestegg_io * io, uint64_t * value, uint64_t * length, enum vint_mask maskflag [all...] |
/external/llvm/include/llvm-c/ |
Disassembler.h | 50 typedef int (*LLVMOpInfoCallback)(void *DisInfo, uint64_t PC, 51 uint64_t Offset, uint64_t Size, 75 uint64_t Present; /* 1 if this symbol is present */ 77 uint64_t Value; /* symbol value if name is NULL */ 83 uint64_t Value; 84 uint64_t VariantKind; 111 uint64_t ReferenceValue, 112 uint64_t *ReferenceType, 113 uint64_t ReferencePC [all...] |
/frameworks/base/services/common_time/ |
common_time_server.h | 52 uint64_t getTimelineID(); 63 status_t getMasterElectionGroupId(uint64_t *id); 64 status_t setMasterElectionGroupId(uint64_t id); 116 static bool arbitrateMaster(uint64_t deviceID1, uint8_t devicePrio1, 117 uint64_t deviceID2, uint8_t devicePrio2); 143 uint64_t masterDeviceID, 145 uint64_t timelineID, 210 uint64_t mTimelineID; 253 uint64_t mDeviceID; // unique ID of this device 254 uint64_t mSyncGroupID; // synchronization group ID of this device [all...] |
/external/llvm/tools/llvm-objdump/ |
MachODump.cpp | 96 uint64_t AAddr, BAddr; 110 static void DumpAddress(uint64_t Address, ArrayRef<SectionRef> Sections, 113 uint64_t SectAddr = 0, SectSize = 0; 116 uint64_t addr = SectAddr; 132 typedef std::map<uint64_t, MCFunction*> FunctionMapTy; 136 MemoryObject &Object, uint64_t Start, 137 uint64_t End, 139 uint64_t Address, 143 SmallVector<uint64_t, 16> Calls; 207 SmallVectorImpl<uint64_t> &FoundFns) [all...] |
/external/llvm/unittests/ADT/ |
APIntTest.cpp | 28 APInt Minus3(128, static_cast<uint64_t>(-3), true); 32 APInt Minus1(128, static_cast<uint64_t>(-1), true); 46 APInt i33minus2(33, static_cast<uint64_t>(-2), true); 53 EXPECT_EQ(((uint64_t)-2)&((1ull<<33) -1), i33minus2.getZExtValue()); 85 APInt u64max(128, static_cast<uint64_t>(-1), false); 92 EXPECT_EQ((uint64_t)~0ull, u64max.getZExtValue()); 116 const APInt neg_two(1, static_cast<uint64_t>(-2), true); 117 const APInt neg_one(1, static_cast<uint64_t>(-1), true); 225 EXPECT_EQ(APInt(32, uint64_t(-0LL)), APInt(32, "-0", 2)); 226 EXPECT_EQ(APInt(32, uint64_t(-1LL)), APInt(32, "-1", 2)) [all...] |
/external/clang/include/clang/AST/ |
VTableBuilder.h | 93 static VTableComponent getFromOpaqueInteger(uint64_t I) { 153 Value = (uint64_t(Offset.getQuantity()) << 3) | ComponentKind; 187 explicit VTableComponent(uint64_t Value) 200 typedef std::pair<uint64_t, ThunkInfo> VTableThunkTy; 206 typedef llvm::DenseMap<BaseSubobject, uint64_t> AddressPointsMapTy; 208 uint64_t NumVTableComponents; 212 uint64_t NumVTableThunks; 221 VTableLayout(uint64_t NumVTableComponents, 223 uint64_t NumVTableThunks, 229 uint64_t getNumVTableComponents() const [all...] |
/external/netperf/ |
netcpu_pstatnew.c | 42 uint64_t idle; 43 uint64_t user; 44 uint64_t kernel; 45 uint64_t interrupt; 48 uint64_t lib_iticksperclktick; 104 res[i].idle = (((uint64_t)psp[i].psp_idlecycles.psc_hi << 32) + 113 res[i].user = (((uint64_t)psp[i].psp_usercycles.psc_hi << 32) + 122 res[i].kernel = (((uint64_t)psp[i].psp_systemcycles.psc_hi << 32) + 131 res[i].interrupt = (((uint64_t)psp[i].psp_interruptcycles.psc_hi << 32) + 175 uint64_t total_cpu_cycles [all...] |
/external/qemu/target-mips/ |
op_helper.c | 117 HELPER_ST(sd, stq, uint64_t) 144 static inline uint64_t get_HILO (void) 146 return ((uint64_t)(env->active_tc.HI[0]) << 32) | (uint32_t)env->active_tc.LO[0]; 149 static inline void set_HILO (uint64_t HILO) 155 static inline void set_HIT0_LO (target_ulong arg1, uint64_t HILO) 161 static inline void set_HI_LOT0 (target_ulong arg1, uint64_t HILO) 177 set_HI_LOT0(arg1, 0 - ((uint64_t)(uint32_t)arg1 * (uint64_t)(uint32_t)arg2)); 198 set_HI_LOT0(arg1, ((uint64_t)get_HILO()) + ((uint64_t)(uint32_t)arg1 * (uint64_t)(uint32_t)arg2)) [all...] |
/bionic/libm/upstream-freebsd/lib/msun/src/ |
s_ceill.c | 35 uint64_t o = u.bits.manh; \ 43 uint64_t o = u.bits.manh; \ 67 uint64_t m = ((1llu << MANH_SIZE) - 1) >> (e + 1); 84 uint64_t m = (uint64_t)-1 >> (64 - LDBL_MANT_DIG + e + 1); 91 uint64_t o = u.bits.manl;
|
s_floorl.c | 35 uint64_t o = u.bits.manh; \ 43 uint64_t o = u.bits.manh; \ 67 uint64_t m = ((1llu << MANH_SIZE) - 1) >> (e + 1); 84 uint64_t m = (uint64_t)-1 >> (64 - LDBL_MANT_DIG + e + 1); 91 uint64_t o = u.bits.manl;
|
/external/llvm/include/llvm/Support/ |
MemoryObject.h | 30 virtual uint64_t getBase() const = 0; 37 virtual uint64_t getExtent() const = 0; 45 virtual int readByte(uint64_t address, uint8_t* ptr) const = 0; 61 virtual int readBytes(uint64_t address, 62 uint64_t size, 64 uint64_t* copied) const;
|
/external/llvm/lib/DebugInfo/ |
DWARFDebugRangeList.h | 27 uint64_t StartAddress; 33 uint64_t EndAddress; 53 bool containsAddress(uint64_t BaseAddress, uint64_t Address) const { 73 bool containsAddress(uint64_t BaseAddress, uint64_t Address) const;
|
/external/llvm/unittests/ExecutionEngine/JIT/ |
OProfileJITEventListenerTest.cpp | 22 uint64_t Addr; 27 uint64_t addr, 64 uint64_t addr, 87 uint64_t addr = reinterpret_cast<uint64_t>(code); 104 int unload_native_code(op_agent_t agent, uint64_t addr) {
|
/external/skia/src/image/ |
SkSurface_Raster.cpp | 66 uint64_t minRB = (uint64_t)info.fWidth << shift; 76 uint64_t size = (uint64_t)info.fHeight * rowBytes; 160 uint64_t size64 = (uint64_t)info.fHeight * rowBytes;
|
/external/srtp/crypto/include/ |
integers.h | 81 typedef unsigned long uint64_t; typedef 83 typedef unsigned long long uint64_t; typedef 102 typedef double uint64_t; typedef 104 extern uint64_t make64(uint32_t high, uint32_t low); 105 extern uint32_t high32(uint64_t value); 106 extern uint32_t low32(uint64_t value);
|
/external/valgrind/main/none/tests/s390x/ |
cds.c | 5 uint64_t high; 6 uint64_t low; 10 test(quad_word op1_init, uint64_t op2_init, quad_word op3_init, 16 uint64_t op2 = op2_init; 20 uint64_t op2_before = op2; 96 uint64_t op2;
|
/external/webkit/Source/WebKit2/Platform/CoreIPC/ |
ArgumentDecoder.h | 45 uint64_t destinationID() const { return m_destinationID; } 58 bool decodeUInt64(uint64_t&); 66 COMPILE_ASSERT(sizeof(T) <= sizeof(uint64_t), enum_type_must_not_be_larger_than_64_bits); 68 uint64_t value; 115 uint64_t m_destinationID; 134 template<> inline bool ArgumentDecoder::decode(uint64_t& n)
|
/external/webkit/Source/WebKit2/UIProcess/ |
DrawingAreaProxyImpl.h | 60 virtual void update(uint64_t backingStoreStateID, const UpdateInfo&); 61 virtual void didUpdateBackingStoreState(uint64_t backingStoreStateID, const UpdateInfo&, const LayerTreeContext&); 62 virtual void enterAcceleratedCompositingMode(uint64_t backingStoreStateID, const LayerTreeContext&); 63 virtual void exitAcceleratedCompositingMode(uint64_t backingStoreStateID, const UpdateInfo&); 87 uint64_t m_currentBackingStoreStateID; 91 uint64_t m_nextBackingStoreStateID;
|
/external/webkit/Source/WebKit2/WebProcess/Downloads/ |
Download.h | 65 static PassOwnPtr<Download> create(uint64_t downloadID, const WebCore::ResourceRequest&); 70 uint64_t destinationID() const { return downloadID(); } 76 uint64_t downloadID() const { return m_downloadID; } 81 void didReceiveData(uint64_t length); 101 Download(uint64_t downloadID, const WebCore::ResourceRequest&); 107 uint64_t m_downloadID;
|
/frameworks/compile/mclinker/include/mcld/Support/ |
LEB128.h | 56 size_t encode<uint64_t>(ByteType *&pBuf, uint64_t pValue); 76 uint64_t decode<uint64_t>(const ByteType *pBuf, size_t &pSize); 83 uint64_t decode<uint64_t>(const ByteType *&pBuf);
|
/frameworks/rs/ |
rsStream.cpp | 35 uint64_t IStream::loadOffset() { 36 uint64_t tmp; 39 tmp = reinterpret_cast<const uint64_t *>(&mData[mPos])[0]; 40 mPos += sizeof(uint64_t); 53 OStream::OStream(uint64_t len, bool use64) { 73 void OStream::addOffset(uint64_t v) {
|
/sdk/emulator/qtools/ |
profile_trace.cpp | 14 uint64_t elapsed; // elapsed time for this function 27 uint64_t elapsed1, elapsed2; 66 uint64_t prev_bb_time = 0; 75 uint64_t elapsed = 0; 101 uint64_t total = 0; 111 uint64_t sum = 0;
|
stack_dump.cpp | 18 static uint64_t debugTime; 19 static uint64_t dumpTime = 0; 23 void push(int stackLevel, uint64_t time, CallStackBase *base); 24 void pop(int stackLevel, uint64_t time, CallStackBase *base); 43 void MyFrame::push(int stackLevel, uint64_t time, CallStackBase *base) 57 void MyFrame::pop(int stackLevel, uint64_t time, CallStackBase *base)
|