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

1 2 3 4 5 6 7 8 91011>>

  /art/runtime/
offsets.cc 23 std::ostream& operator<<(std::ostream& os, const Offset& offs) {
24 return os << offs.Int32Value();
offsets.h 42 std::ostream& operator<<(std::ostream& os, const Offset& 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/chromium_org/native_client_sdk/src/libraries/nacl_io/
fifo_char.cc 62 size_t offs = tail_; local
64 size_t read_len = std::min(len, size_ - offs);
65 memcpy(ptr, &buffer_[offs], read_len);
68 offs += read_len;
70 if (offs == size_)
71 offs = 0;
95 size_t offs = (tail_ + avail_) % size_; local
97 size_t write_len = std::min(len, size_ - offs);
98 memcpy(&buffer_[offs], ptr, write_len);
101 offs += write_len
    [all...]
getdents_helper.cc 59 Error GetDentsHelper::GetDents(size_t offs,
77 if (offs >= max) {
82 if (offs + size >= max)
83 size = max - offs;
85 memcpy(pdir, reinterpret_cast<const char*>(dirents_.data()) + offs, size);
getdents_helper.h 23 Error GetDents(size_t offs, dirent* pdir, size_t size, int* out_bytes) const;
kernel_handle.cc 48 Error error = node_->GetSize(&handle_attr_.offs);
72 base = handle_attr_.offs;
94 *out_offset = handle_attr_.offs = new_offset;
104 handle_attr_.offs += *cnt;
114 handle_attr_.offs += *cnt;
120 Error error = node_->GetDents(handle_attr_.offs, pdir, nbytes, cnt);
122 handle_attr_.offs += *cnt;
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/memfs/
mem_fs_node.cc 45 if (attr.offs + count > size) {
46 count = size - attr.offs;
49 memcpy(buf, &data_[attr.offs], count);
64 if (count + attr.offs > static_cast<size_t>(stat_.st_size)) {
65 Resize(count + attr.offs);
66 count = stat_.st_size - attr.offs;
69 memcpy(&data_[attr.offs], buf, count);
  /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/third_party/opus/src/celt/
entcode.h 71 opus_uint32 offs; member in struct:ec_ctx
88 return _this->offs;
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){
  /external/libopus/celt/
entcode.h 71 opus_uint32 offs; member in struct:ec_ctx
88 return _this->offs;
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){
  /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/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);
81 offs: parseInt(vals[0], 16),
98 orderedMap.sort(function(a, b) { return a.offs - b.offs; });
  /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...]
  /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));
  /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...]
  /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
fx_zlib_inftrees.c 59 unsigned short offs[MAXBITS+1]; /* offsets in table for each length */ local
141 offs[1] = 0;
143 offs[len + 1] = offs[len] + count[len];
147 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
  /external/qemu/distrib/zlib-1.2.8/
inftrees.c 59 unsigned short offs[MAXBITS+1]; /* offsets in table for each length */ local
141 offs[1] = 0;
143 offs[len + 1] = offs[len] + count[len];
147 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
  /external/zlib/src/contrib/infback9/
inftree9.c 59 unsigned short offs[MAXBITS+1]; /* offsets in table for each length */ local
135 offs[1] = 0;
137 offs[len + 1] = offs[len] + count[len];
141 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
  /external/zlib/src/
inftrees.c 59 unsigned short offs[MAXBITS+1]; /* offsets in table for each length */ local
141 offs[1] = 0;
143 offs[len + 1] = offs[len] + count[len];
147 if (lens[sym] != 0) work[offs[lens[sym]]++] = (unsigned short)sym;
  /external/clang/lib/Edit/
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.str(), beforePreviousInsertions);
268 SourceLocation Loc, FileOffset offs,
276 StringRef buffer = SM.getBufferData(offs.getFID(), &Invalid)
346 FileOffset offs = I->first; local
    [all...]

Completed in 1589 milliseconds

1 2 3 4 5 6 7 8 91011>>