Searched defs:offset (Results 751 - 775 of 1540) sorted by relevance

<<31323334353637383940>>

/external/bluetooth/glib/gio/
H A Dglocalfileoutputstream.c92 goffset offset,
402 goffset offset,
412 pos = lseek (file->priv->fd, offset, seek_type_to_lseek (type));
401 g_local_file_output_stream_seek(GFileOutputStream *stream, goffset offset, GSeekType type, GCancellable *cancellable, GError **error) argument
/external/bluetooth/glib/gio/xdgmime/
H A Dxdgmimemagic.c77 int offset; member in struct:XdgMimeMagicMatchlet
108 matchlet->offset = 0;
309 * [ indent ] ">" start-offset "=" value
356 matchlet->offset = _xdg_mime_magic_read_a_number (magic_file, &end_of_file);
362 if (matchlet->offset == -1)
525 for (i = matchlet->offset; i < matchlet->offset + matchlet->range_length; i++)
718 extent = matchlet->value_length + matchlet->offset + matchlet->range_length;
/external/bluetooth/glib/glib/
H A Dgunidecomp.c182 int offset; local
186 offset = decomp_table[half].compat_offset;
187 if (offset == G_UNICODE_NOT_PRESENT_OFFSET)
188 offset = decomp_table[half].canon_offset;
192 offset = decomp_table[half].canon_offset;
193 if (offset == G_UNICODE_NOT_PRESENT_OFFSET)
197 return &(decomp_expansion_string[offset]);
/external/bluetooth/glib/gobject/
H A Dgclosure.c314 * fixed offset in the class structure. The meta marshaller retrieves
873 guint offset = GPOINTER_TO_UINT (marshal_data); local
876 callback = G_STRUCT_MEMBER (gpointer, class, offset);
896 guint offset = GPOINTER_TO_UINT (marshal_data); local
899 callback = G_STRUCT_MEMBER (gpointer, class, offset);
911 * @struct_offset: the offset of the member function of @itype's class
914 * Creates a new closure which invokes the function found at the offset
/external/chromium/base/metrics/
H A Dstats_table.cc80 // Calculates delta to align an offset to the size of an int
81 inline int AlignOffset(int offset) { argument
82 return (sizeof(int) - (offset % sizeof(int))) % sizeof(int);
210 int offset = 0; local
213 offset += sizeof(*table_header_);
214 offset += AlignOffset(offset);
219 thread_names_table_ = reinterpret_cast<char*>(data + offset);
220 offset += sizeof(char) *
222 offset
[all...]
/external/chromium/chrome/browser/accessibility/
H A Dbrowser_accessibility_win.h233 STDMETHODIMP get_caretOffset(LONG* offset);
243 STDMETHODIMP get_textAtOffset(LONG offset,
248 STDMETHODIMP get_textBeforeOffset(LONG offset,
253 STDMETHODIMP get_textAfterOffset(LONG offset,
262 STDMETHODIMP get_attributes(LONG offset, LONG* start_offset, LONG* end_offset, argument
266 STDMETHODIMP get_characterExtents(LONG offset, argument
274 LONG* offset) {
280 STDMETHODIMP setCaretOffset(LONG offset) { argument
474 // the given offset until the given IAccessible2 boundary (like word,
475 // sentence) is found, and return its offset
272 get_offsetAtPoint(LONG x, LONG y, enum IA2CoordinateType coord_type, LONG* offset) argument
[all...]
/external/chromium/chrome/browser/autocomplete/
H A Dhistory_url_provider.cc315 // strip the scheme as we need to know the offset so we can adjust the
320 const size_t offset = trim_http ? TrimHttpPrefix(&display_string) : 0; local
337 string16::npos : best_prefix->prefix.length() - offset;
/external/chromium/chrome/browser/
H A Dexternal_tab_container_win.h147 virtual bool OnGoToEntryOffset(int offset);
354 virtual bool OnGoToEntryOffset(int offset) { argument
/external/chromium/chrome/browser/ui/gtk/
H A Dgtk_tree.cc156 int offset = OffsetForGroupIndex(group_it - groups.begin()); local
157 model_rows->insert(list_store_index - offset);
/external/chromium/chrome/browser/ui/gtk/tabs/
H A Ddragged_tab_gtk.cc314 // |offset| is the distance from the edge of the image to the middle of
316 double offset = kDragFrameBorderSize / 2.0 - 0.5; local
317 double left_x = offset;
318 double top_y = tab_height - kDragFrameBorderSize + offset;
319 double right_x = widget->allocation.width - offset;
320 double bottom_y = widget->allocation.height - offset;
321 double middle_x = tab_width + offset;
/external/chromium/chrome/browser/ui/toolbar/
H A Dback_forward_menu_model.cc371 int BackForwardMenuModel::FindChapterStop(int offset, argument
374 if (offset < 0 || skip < 0)
378 offset *= -1;
381 int entry = contents->controller().GetCurrentEntryIndex() + offset;
/external/chromium/chrome/browser/ui/touch/tabs/
H A Dtouch_tab_strip.cc57 void TouchTabStrip::SetBackgroundOffset(const gfx::Point& offset) { argument
59 GetTabAtTabDataIndex(i)->set_background_offset(offset);
148 // offset the next tab to the right by the width of this tab
/external/chromium/chrome/browser/ui/views/bubble/
H A Dbubble_border.cc150 int BubbleBorder::SetArrowOffset(int offset, const gfx::Size& contents_size) { argument
156 offset = std::max(arrow_offset_,
157 std::min(offset, (is_arrow_on_horizontal(arrow_location_) ?
159 override_arrow_offset_ = offset;
222 // |arrow_offset| is offset of arrow from the begining of the edge.
359 int offset) const {
363 * . ┌───┐ ┬ offset
378 start_x + (is_horizontal ? before_arrow : offset),
379 start_y + (is_horizontal ? offset : before_arrow));
405 * └─────┘ └─── |shift_x| (offset fro
[all...]
/external/chromium/chrome/browser/ui/webui/
H A Dntp_resource_cache.cc110 // The bar is detached, so we must offset the background by the bar size
113 int offset = BookmarkBarView::kNewtabBarHeight; local
115 int offset = bookmarks::kNTPBookmarkBarHeight;
117 int offset = BookmarkBarGtk::kBookmarkBarNTPHeight;
119 int offset = 0;
124 return "0% " + base::IntToString(-offset) + "px";
126 return "100% " + base::IntToString(-offset) + "px";
127 return "center " + base::IntToString(-offset) + "px";
/external/chromium/net/base/
H A Dsdch_manager.cc30 size_t offset,
37 : text_(dictionary_text, offset),
29 Dictionary(const std::string& dictionary_text, size_t offset, const std::string& client_hash, const GURL& gurl, const std::string& domain, const std::string& path, const base::Time& expiration, const std::set<int>& ports) argument
/external/chromium/net/disk_cache/
H A Dblock_files.cc291 size_t offset = address.start_block() * address.BlockSize() + local
294 file->Write(zero_buffer_, size, offset);
360 size_t offset = address.start_block() * address.BlockSize() +
362 bool ok = file->Read(buffer.get(), size, offset);
H A Dentry_unittest.cc1288 // Writes |buf_1| to offset and reads it back as |buf_2|.
1289 void VerifySparseIO(disk_cache::Entry* entry, int64 offset, argument
1294 int ret = entry->ReadSparseData(offset, buf_2, size, &cb);
1297 ret = entry->WriteSparseData(offset, buf_1, size, &cb);
1300 ret = entry->ReadSparseData(offset, buf_2, size, &cb);
1306 // Reads |size| bytes from |entry| at |offset| and verifies that they are the
1308 void VerifyContentSparseIO(disk_cache::Entry* entry, int64 offset, char* buffer, argument
1314 int ret = entry->ReadSparseData(offset, buf_1, size, &cb);
1330 // Write at offset 0.
1333 // Write at offset
1645 int64 offset = 1024; local
1732 int64 offset = 1024; local
1912 int64 offset = 0; local
[all...]
H A Dmem_entry_impl.cc26 // Convert global offset to child index.
27 inline int ToChildIndex(int64 offset) { argument
28 return static_cast<int>(offset >> kMaxSparseEntryBits);
31 // Convert global offset to offset in child entry.
32 inline int ToChildOffset(int64 offset) { argument
33 return static_cast<int>(offset & (kMaxSparseEntrySize - 1));
169 int MemEntryImpl::ReadData(int index, int offset, net::IOBuffer* buf, argument
175 new ReadWriteDataParameters(index, offset, buf_len, false)));
178 int result = InternalReadData(index, offset, bu
188 WriteData(int index, int offset, net::IOBuffer* buf, int buf_len, net::CompletionCallback* completion_callback, bool truncate) argument
207 ReadSparseData(int64 offset, net::IOBuffer* buf, int buf_len, net::CompletionCallback* completion_callback) argument
221 WriteSparseData(int64 offset, net::IOBuffer* buf, int buf_len, net::CompletionCallback* completion_callback) argument
234 GetAvailableRange(int64 offset, int len, int64* start, CompletionCallback* callback) argument
271 InternalReadData(int index, int offset, net::IOBuffer* buf, int buf_len) argument
294 InternalWriteData(int index, int offset, net::IOBuffer* buf, int buf_len, bool truncate) argument
336 InternalReadSparseData(int64 offset, net::IOBuffer* buf, int buf_len) argument
394 InternalWriteSparseData(int64 offset, net::IOBuffer* buf, int buf_len) argument
461 GetAvailableRange(int64 offset, int len, int64* start) argument
505 PrepareTarget(int index, int offset, int buf_len) argument
573 OpenChild(int64 offset, bool create) argument
588 FindNextChild(int64 offset, int len, MemEntryImpl** child) argument
[all...]
/external/chromium/third_party/libevent/test/
H A Dregress.gen.c218 msg_run_get(struct msg *msg, int offset, argument
221 if (!msg->run_set || offset < 0 || offset >= msg->run_length)
223 *value = msg->run_data[offset];
/external/chromium/webkit/glue/
H A Dwebkit_glue.cc161 gfx::Size offset = web_frame->scrollOffset(); local
164 if (offset.width() > 0 || offset.height() > 0) {
170 offset.width(), offset.height());
/external/e2fsprogs/lib/ext2fs/
H A Dinode.c526 unsigned long group, block, block_nr, offset; local
562 offset = ((ino - 1) % inodes_per_block) *
569 offset = ((ino - 1) % EXT2_INODES_PER_GROUP(fs->super)) *
571 block = offset >> EXT2_BLOCK_SIZE_BITS(fs->super);
578 offset &= (EXT2_BLOCK_SIZE(fs->super) - 1);
587 if ((offset + length) > fs->blocksize)
588 clen = fs->blocksize - offset;
598 memcpy(ptr, ((char *) fs->icache->buffer) + (unsigned) offset,
601 offset = 0;
632 unsigned long group, block, block_nr, offset; local
[all...]
H A Dunix_io.c81 ext2_loff_t offset; member in struct:unix_private_data
94 static errcode_t unix_write_byte(io_channel channel, unsigned long offset,
169 location = ((ext2_loff_t) block * channel->block_size) + data->offset;
192 * Windows and FreeBSD block devices only allow sector alignment IO in offset and size
208 location = ((ext2_loff_t) block * channel->block_size) + data->offset;
266 location = ((ext2_loff_t) block * channel->block_size) + data->offset;
708 static errcode_t unix_write_byte(io_channel channel, unsigned long offset, argument
727 if (lseek(data->dev, offset + data->offset, SEEK_SET) < 0)
767 if (!strcmp(option, "offset")) {
[all...]
/external/e2fsprogs/misc/
H A Ddumpe2fs.c75 unsigned long nbytes, unsigned long offset)
81 offset += group * nbytes;
87 print_number(i + offset);
92 print_number(j + offset);
74 print_free(unsigned long group, char * bitmap, unsigned long nbytes, unsigned long offset) argument
/external/emma/core/java12/com/vladium/jcd/cls/
H A DClassDef.java618 public int addFieldref (final int offset) argument
622 final Field_info field = m_fields.get (offset);
/external/freetype/src/cff/
H A Dcffobjs.c623 FT_Vector* offset = &dict->font_offset; local
636 offset->x = FT_DivFix( offset->x, temp );
637 offset->y = FT_DivFix( offset->y, temp );
640 offset->x >>= 16;
641 offset->y >>= 16;
650 FT_Vector* offset; local
685 offset = &sub->font_offset;
707 offset
[all...]

Completed in 427 milliseconds

<<31323334353637383940>>