/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; 46 return LHS.Offs < RHS.Offs [all...] |
Commit.h | 112 FileOffset Offs, StringRef text, bool beforePreviousInsertions); 113 void addInsertFromRange(SourceLocation OrigLoc, FileOffset Offs, 116 void addRemove(SourceLocation OrigLoc, FileOffset Offs, unsigned Len); 121 bool canInsertInOffset(SourceLocation OrigLoc, FileOffset Offs); 122 bool canRemoveRange(CharSourceRange range, FileOffset &Offs, unsigned &Len); 124 FileOffset &Offs, unsigned &Len);
|
EditedSource.h | 56 bool canInsertInOffset(SourceLocation OrigLoc, FileOffset Offs); 71 bool commitInsert(SourceLocation OrigLoc, FileOffset Offs, StringRef text, 73 bool commitInsertFromRange(SourceLocation OrigLoc, FileOffset Offs, 80 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 | 30 bool EditedSource::canInsertInOffset(SourceLocation OrigLoc, FileOffset Offs) { 31 FileEditsTy::iterator FA = getActionForOffset(Offs); 33 if (FA->first != Offs) 53 FileOffset Offs, StringRef text, 55 if (!canInsertInOffset(OrigLoc, Offs)) 68 FileEdit &FA = FileEdits[Offs]; 85 FileOffset Offs, 139 return commitInsert(OrigLoc, Offs, StrVec.str(), beforePreviousInsertions); 243 StringRef text, FileOffset offs, unsigned len, 245 assert(!offs.getFID().isInvalid()) 280 FileOffset offs = I->first; local [all...] |
/external/astl/src/ |
ios_pos_types.cpp | 34 fpos& fpos::operator+=(streamoff offs) { 35 const streamoff new_offs = mOffs + offs; 36 if (offs > 0) { 48 fpos fpos::operator+(streamoff offs) const { 50 pos += offs; 54 fpos fpos::operator-(streamoff offs) const { 56 pos -= offs;
|
/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/astl/include/ |
ios_pos_types.h | 51 fpos(streamoff offs) : mOffs(offs) { } 60 fpos& operator+=(streamoff offs); 61 fpos& operator-=(streamoff offs) { 62 return operator+=(-offs); 65 fpos operator+(streamoff offs) const; 66 fpos operator-(streamoff offs) const;
|
/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...] |
/frameworks/base/cmds/servicemanager/ |
binder.c | 44 unsigned *offs = txn->offs; local 49 fprintf(stderr," pid %8d uid %8d data %8d offs %8d\n", 53 obj = (void*) (((char*) txn->data) + *offs++); 183 data.txn.offs = 0; 187 data.txn.offs_size = ((char*) reply->offs) - ((char*) reply->offs0); 189 data.txn.offs = reply->offs0; 325 writebuf.txn.offs_size = ((char*) msg->offs) - ((char*) msg->offs0); 327 writebuf.txn.offs = msg->offs0; 397 bio->offs = bio->offs0 = txn->offs [all...] |
binder.h | 33 void *offs; member in struct:binder_txn 39 uint32_t *offs; /* array of offsets */ member in struct:binder_io
|
/external/elfutils/libdwfl/ |
dwfl_module_getdwarf.c | 283 OFFS[*] start out zero and remain zero if unresolved. */ 286 GElf_Addr addrs[n], GElf_Off offs[n]) 295 if (offs[j] == 0 299 offs[j] = addrs[j] - phdr->p_vaddr + phdr->p_offset; 379 GElf_Off offs[i_max] = { 0, }; local 380 find_offsets (mod->main.elf, ehdr, i_max, addrs, offs); 383 if (offs[i_hash] != 0) 389 offs[i_hash] + entsz, entsz, 397 if (offs[i_gnu_hash] != 0 && mod->syments == 0) 409 data = elf_getdata_rawchunk (mod->main.elf, offs[i_gnu_hash] [all...] |
/development/ndk/platforms/android-3/include/linux/mtd/ |
bbm.h | 20 int offs; member in struct:nand_bbt_descr
|
/external/kernel-headers/original/linux/ |
msm_hw3d.h | 49 int get_msm_hw3d_file(int fd, uint32_t *offs, unsigned long *pbase,
|
/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
|
/prebuilts/ndk/6/platforms/android-3/arch-x86/usr/include/linux/mtd/ |
bbm.h | 20 int offs; member in struct:nand_bbt_descr
|
/prebuilts/ndk/7/platforms/android-14/arch-arm/usr/include/linux/mtd/ |
bbm.h | 20 int offs; member in struct:nand_bbt_descr
|