HomeSort by relevance Sort by last modified time
    Searched full:offs (Results 1 - 25 of 401) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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 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];
86 FileOffset Offs,
140 return commitInsert(OrigLoc, Offs, StrVec.str(), beforePreviousInsertions);
270 SourceLocation Loc, FileOffset offs,
278 StringRef buffer = SM.getBufferData(offs.getFID(), &Invalid)
348 FileOffset offs = I->first; local
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
mount_node_mem.cc 25 Error MountNodeMem::Read(size_t offs, void* buf, size_t count, int* out_bytes) {
34 if (offs + count > size) {
35 count = size - offs;
38 memcpy(buf, &data_[offs], count);
43 Error MountNodeMem::Write(size_t offs,
53 if (count + offs > stat_.st_size) {
54 Error error = FTruncate(count + offs);
58 count = stat_.st_size - offs;
61 memcpy(&data_[offs], buf, count);
mount_node_http.h 23 virtual Error GetDents(size_t offs,
28 virtual Error Read(size_t offs, void* buf, size_t count, int* out_bytes);
30 virtual Error Write(size_t offs,
51 Error ReadPartialFromCache(size_t offs,
55 Error DownloadPartial(size_t offs, void* buf, size_t count, int* out_bytes);
mount_dev.cc 37 virtual Error Read(size_t offs, void* buf, size_t count, int* out_bytes);
38 virtual Error Write(size_t offs,
52 virtual Error Read(size_t offs, void* buf, size_t count, int* out_bytes);
53 virtual Error Write(size_t offs,
63 virtual Error Write(size_t offs,
76 virtual Error Read(size_t offs, void* buf, size_t count, int* out_bytes);
77 virtual Error Write(size_t offs,
87 virtual Error Read(size_t offs, void* buf, size_t count, int* out_bytes);
88 virtual Error Write(size_t offs,
104 Error RealNode::Read(size_t offs, void* buf, size_t count, int* out_bytes)
    [all...]
mount_node_mem.h 21 virtual Error Read(size_t offs, void* buf, size_t count, int* out_bytes);
22 virtual Error Write(size_t offs,
mount_node_dir.h 32 virtual Error GetDents(size_t offs,
36 virtual Error Read(size_t offs, void *buf, size_t count, int* out_bytes);
37 virtual Error Write(size_t offs, const void *buf,
mount_node_html5fs.h 21 virtual Error GetDents(size_t offs,
26 virtual Error Read(size_t offs, void* buf, size_t count, int* out_bytes);
28 virtual Error Write(size_t offs,
mount_node_tty.h 27 virtual Error Read(size_t offs,
32 virtual Error Write(size_t offs,
42 virtual Error Write(size_t offs,
mount_node_dir.cc 28 Error MountNodeDir::Read(size_t offs, void* buf, size_t count, int* out_bytes) {
35 Error MountNodeDir::Write(size_t offs,
43 Error MountNodeDir::GetDents(size_t offs,
65 if (offs >= max) {
70 if (offs + size >= max)
71 size = max - offs;
73 memcpy(pdir, ((char*)cache_) + offs, size);
path.cc 174 size_t offs = 0; local
178 offs = 1;
183 next = path.find('/', offs);
186 if (next == offs) {
187 ++offs;
191 std::string part = path.substr(offs, next - offs);
193 offs = next + 1;
mount_passthrough.cc 27 virtual Error Read(size_t offs, void* buf, size_t count, int* out_bytes) {
31 int err = _real_lseek(real_fd_, offs, 0, &new_offset);
44 virtual Error Write(size_t offs,
51 int err = _real_lseek(real_fd_, offs, 0, &new_offset);
69 virtual Error GetDents(size_t offs,
mount_node_http.cc 155 Error MountNodeHttp::GetDents(size_t offs,
216 Error MountNodeHttp::Read(size_t offs,
230 return ReadPartialFromCache(offs, buf, count, out_bytes);
233 return DownloadPartial(offs, buf, count, out_bytes);
238 Error MountNodeHttp::Write(size_t offs,
400 Error MountNodeHttp::ReadPartialFromCache(size_t offs,
406 if (offs > cached_data_.size())
409 count = std::min(count, static_cast<int>(cached_data_.size() - offs));
410 memcpy(buf, &cached_data_.data()[offs], count);
416 Error MountNodeHttp::DownloadPartial(size_t offs,
    [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/chromium_org/native_client_sdk/src/examples/tutorial/debugging/
example.js 25 if (addr < map[0].offs) {
30 if (addr < map[i].offs) {
31 var offs = addr - map[i-1].offs;
45 return filename + ' ' + map[i-1].name + ' + 0x' + offs.toString(16);
50 return filename + ' ' + map[last].name + ' + 0x' + offs.toString(16);
60 offs: parseInt(vals[0], 16),
68 orderedMap.sort(function(a,b) { return a.offs - b.offs; });
  /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/chromium_org/native_client_sdk/src/examples/api/websocket/
websocket.cc 49 uint32_t offs = 0; local
52 for (offs = 0; offs < array.ByteLength() && offs < MAX_TO_CONVERT; offs++)
53 sprintf(&tmp[offs * BYTES_PER_CHAR], "%02Xh ", data[offs]);
55 sprintf(&tmp[offs * BYTES_PER_CHAR], "...");
  /external/chromium_org/third_party/tcmalloc/chromium/src/tests/
addressmap_unittest.cc 103 int offs = rnd.Uniform(ptrs_and_sizes[i].size); local
104 CHECK(!map.FindInside(&SizeFunc, kMaxSize, p + offs, &res_p));
108 CHECK(result = map.FindInside(&SizeFunc, kMaxRealSize, p + offs, &res_p));
129 int offs = rnd.Uniform(ptrs_and_sizes[i].size); local
130 CHECK(result = map.FindInside(&SizeFunc, kMaxRealSize, p + offs, &res_p));
141 int offs = rnd.Uniform(ptrs_and_sizes[i].size); local
142 CHECK(!map.FindInside(&SizeFunc, kMaxSize, p + offs, &res_p));
146 CHECK(result = map.FindInside(&SizeFunc, kMaxRealSize, p + offs, &res_p));
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
addressmap_unittest.cc 103 int offs = rnd.Uniform(ptrs_and_sizes[i].size); local
104 CHECK(!map.FindInside(&SizeFunc, kMaxSize, p + offs, &res_p));
108 CHECK(result = map.FindInside(&SizeFunc, kMaxRealSize, p + offs, &res_p));
129 int offs = rnd.Uniform(ptrs_and_sizes[i].size); local
130 CHECK(result = map.FindInside(&SizeFunc, kMaxRealSize, p + offs, &res_p));
141 int offs = rnd.Uniform(ptrs_and_sizes[i].size); local
142 CHECK(!map.FindInside(&SizeFunc, kMaxSize, p + offs, &res_p));
146 CHECK(result = map.FindInside(&SizeFunc, kMaxRealSize, p + offs, &res_p));

Completed in 370 milliseconds

1 2 3 4 5 6 7 8 91011>>