/external/clang/test/CodeGen/ |
2005-03-05-OffsetOfHack.c | 7 #define OFFS \ 10 int foo[OFFS];
|
/external/clang/include/clang/Edit/ |
FileOffset.h | 21 unsigned Offs; 23 FileOffset() : Offs(0) { } 24 FileOffset(FileID fid, unsigned offs) : FID(fid), Offs(offs) { } 29 unsigned getOffset() const { return Offs; } 33 NewOffs.Offs += offset; 38 return LHS.FID == RHS.FID && LHS.Offs == RHS.Offs; 44 return std::tie(LHS.FID, LHS.Offs) < std::tie(RHS.FID, RHS.Offs) [all...] |
Commit.h | 115 FileOffset Offs, StringRef text, bool beforePreviousInsertions); 116 void addInsertFromRange(SourceLocation OrigLoc, FileOffset Offs, 119 void addRemove(SourceLocation OrigLoc, FileOffset Offs, unsigned Len); 124 bool canInsertInOffset(SourceLocation OrigLoc, FileOffset Offs); 125 bool canRemoveRange(CharSourceRange range, FileOffset &Offs, unsigned &Len); 127 FileOffset &Offs, unsigned &Len);
|
EditedSource.h | 58 bool canInsertInOffset(SourceLocation OrigLoc, FileOffset Offs); 73 bool commitInsert(SourceLocation OrigLoc, FileOffset Offs, StringRef text, 75 bool commitInsertFromRange(SourceLocation OrigLoc, FileOffset Offs, 82 FileEditsTy::iterator getActionForOffset(FileOffset Offs);
|
/external/clang/lib/Edit/ |
Commit.cpp | 48 FileOffset Offs; 49 if ((!afterToken && !canInsert(loc, Offs)) || 50 ( afterToken && !canInsertAfterToken(loc, Offs, loc))) { 55 addInsert(loc, Offs, text, beforePreviousInsertions); 69 FileOffset Offs; 70 if ((!afterToken && !canInsert(loc, Offs)) || 71 ( afterToken && !canInsertAfterToken(loc, Offs, loc))) { 82 addInsertFromRange(loc, Offs, RangeOffs, RangeLen, beforePreviousInsertions); 87 FileOffset Offs; 89 if (!canRemoveRange(range, Offs, Len)) [all...] |
EditedSource.cpp | 31 bool EditedSource::canInsertInOffset(SourceLocation OrigLoc, FileOffset Offs) { 32 FileEditsTy::iterator FA = getActionForOffset(Offs); 34 if (FA->first != Offs) 54 FileOffset Offs, StringRef text, 56 if (!canInsertInOffset(OrigLoc, Offs)) 69 FileEdit &FA = FileEdits[Offs]; 84 FileOffset Offs, 138 return commitInsert(OrigLoc, Offs, StrVec, beforePreviousInsertions); 268 SourceLocation Loc, FileOffset offs, 276 StringRef buffer = SM.getBufferData(offs.getFID(), &Invalid) [all...] |
/external/lzma/Asm/x86/ |
AesOpt.asm | 63 LOAD_OP macro op:req, offs:req
64 op xmm0, [r1 + r3 offs]
67 LOAD_OP_W macro op:req, offs:req
68 movdqa xmm7, [r1 + r3 offs]
75 CBC_DEC_UPDATE macro reg, offs
77 movdqa xmm6, [rD + offs]
78 movdqa [rD + offs], reg
170 XOR_UPD_1 macro reg, offs
171 pxor reg, [rD + offs]
174 XOR_UPD_2 macro reg, offs
[all...] |
/external/svox/pico_resources/tools/LingwareBuilding/PicoLingware_tools_windows/tools/ |
genlingware.pl | 273 $offs = 0; 284 $offs += print_offs(@svoxheader); 286 print "offset after svoxheader: $offs\n"; 299 #fill should make the whole header 4-byte aligned, i.e. the current offs 301 $fill = ($offs + 2 + $len) % 4; 308 $offs += &print_uint16($len); #write little-endian 16-bit cardinal 309 print "offset after length of header: $offs\n"; 312 $offs += &print_uint8(@fields+0); 313 print "offset after number of fields: $offs\n"; 316 $offs += print_offs($fieldheader) [all...] |
/external/vboot_reference/firmware/2lib/ |
2common.c | 36 uintptr_t offs = p & (align - 1); local 38 if (offs) { 39 offs = align - offs; 41 if (*size < offs) 44 *ptr += offs; 45 *size -= offs;
|
2nvstorage.c | 73 #define GETBIT(offs, mask) (p[offs] & mask ? 1 : 0) 164 #define SETBIT(offs, mask) \ 165 { if (value) p[offs] |= mask; else p[offs] &= ~mask; }
|
/art/runtime/ |
offsets.cc | 23 std::ostream& operator<<(std::ostream& os, const Offset& offs) { 24 return os << offs.Int32Value();
|
/external/svox/pico/lib/ |
picokfst.c | 148 picoos_int32 offs; local 169 BytesToNum(kfst->fstStream,& curpos,& offs); 170 kfst->alphaHashTabPos = kfst->hdrLen + offs; 172 BytesToNum(kfst->fstStream,& curpos,& offs); 173 kfst->transTabPos = kfst->hdrLen + offs; 174 BytesToNum(kfst->fstStream,& curpos,& offs); 175 kfst->inEpsStateTabPos = kfst->hdrLen + offs; 176 BytesToNum(kfst->fstStream,& curpos,& offs); 177 kfst->accStateTabPos = kfst->hdrLen + offs; 276 picoos_int32 offs; local 367 picoos_int32 offs; local [all...] |
/external/deqp/framework/delibs/decpp/ |
dePoolArray.hpp | 134 const T& operator[] (deUintptr offs) const throw() { return (*m_array)[this->m_ndx+offs]; } 145 PoolArrayConstIterator<T, Alignment>& operator+= (deIntptr offs) { this->m_ndx += offs; return *this; } 146 PoolArrayConstIterator<T, Alignment>& operator-= (deIntptr offs) { this->m_ndx -= offs; return *this; } 170 T& operator[] (deUintptr offs) const throw() { return (*m_array)[this->m_ndx+offs]; } 181 PoolArrayIterator<T, Alignment>& operator+= (deIntptr offs) { this->m_ndx += offs; return *this; [all...] |
/art/compiler/utils/arm64/ |
assembler_arm64.cc | 125 void Arm64Assembler::Store(FrameOffset offs, ManagedRegister m_src, size_t size) { 131 StoreWToOffset(kStoreWord, src.AsWRegister(), SP, offs.Int32Value()); 134 StoreToOffset(src.AsXRegister(), SP, offs.Int32Value()); 136 StoreSToOffset(src.AsSRegister(), SP, offs.Int32Value()); 139 StoreDToOffset(src.AsDRegister(), SP, offs.Int32Value()); 143 void Arm64Assembler::StoreRef(FrameOffset offs, ManagedRegister m_src) { 147 offs.Int32Value()); 150 void Arm64Assembler::StoreRawPtr(FrameOffset offs, ManagedRegister m_src) { 153 StoreToOffset(src.AsXRegister(), SP, offs.Int32Value()); 156 void Arm64Assembler::StoreImmediateToFrame(FrameOffset offs, uint32_t imm [all...] |
/external/lzma/C/ |
Ppmd7.h | 78 #define Ppmd7_GetPtr(p, offs) ((void *)((p)->Base + (offs)))
79 #define Ppmd7_GetContext(p, offs) ((CPpmd7_Context *)Ppmd7_GetPtr((p), (offs)))
|
/external/libopus/celt/ |
entenc.c | 61 if(_this->offs+_this->end_offs>=_this->storage)return -1; 62 _this->buf[_this->offs++]=(unsigned char)_value; 67 if(_this->offs+_this->end_offs>=_this->storage)return -1; 119 _this->offs=0; 220 if(_this->offs>0){ 238 celt_assert(_this->offs+_this->end_offs<=_size); 277 OPUS_CLEAR(_this->buf+_this->offs, 278 _this->storage-_this->offs-_this->end_offs); 286 if(_this->offs+_this->end_offs>=_this->storage&&l<used){
|
/development/ndk/platforms/android-3/include/linux/mtd/ |
bbm.h | 20 int offs; member in struct:nand_bbt_descr
|
/prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/mtd/ |
bbm.h | 20 int offs; member in struct:nand_bbt_descr
|
/prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/mtd/ |
bbm.h | 20 int offs; member in struct:nand_bbt_descr
|
/prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/mtd/ |
bbm.h | 20 int offs; member in struct:nand_bbt_descr
|
/prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/mtd/ |
bbm.h | 20 int offs; member in struct:nand_bbt_descr
|
/prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/mtd/ |
bbm.h | 20 int offs; member in struct:nand_bbt_descr
|
/prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/mtd/ |
bbm.h | 20 int offs; member in struct:nand_bbt_descr
|
/prebuilts/ndk/5/platforms/android-3/arch-arm/usr/include/linux/mtd/ |
bbm.h | 20 int offs; member in struct:nand_bbt_descr
|
/prebuilts/ndk/6/platforms/android-3/arch-arm/usr/include/linux/mtd/ |
bbm.h | 20 int offs; member in struct:nand_bbt_descr
|