Searched defs:offset (Results 101 - 125 of 3590) sorted by relevance

1234567891011>>

/external/bluetooth/bluedroid/stack/avrc/
H A Davrc_bld_ct.c48 p_start = (UINT8 *)(p_pkt + 1) + p_pkt->offset;
80 p_start = (UINT8 *)(p_pkt + 1) + p_pkt->offset;
106 p_start = (UINT8 *)(p_pkt + 1) + p_pkt->offset;
129 UINT16 offset = 0, chnl = AVCT_DATA_CTRL, len=AVRC_META_CMD_POOL_SIZE; local
139 offset = AVRC_MSG_PASS_THRU_OFFSET;
143 offset = AVRC_MSG_VENDOR_OFFSET;
155 p_pkt->offset = offset;
156 p_data = (UINT8 *)(p_pkt + 1) + p_pkt->offset;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/params/
H A DDESParameters.java63 int offset)
65 if (key.length - offset < DES_KEY_LENGTH)
74 if (key[j + offset] != DES_weak_keys[i * DES_KEY_LENGTH + j])
61 isWeakKey( byte[] key, int offset) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/digest/
H A DBCMessageDigest.java33 int offset,
36 digest.update(input, offset, len);
31 engineUpdate( byte[] input, int offset, int len) argument
/external/chromium/base/
H A Dutf_offset_string_conversions.h20 // offsets (|offset[s]_for_adjustment|) into the source strings, each offset
22 // If this isn't possible because an offset points past the end of the source
23 // strings or into the middle of a multibyte sequence, the offending offset will
24 // be set to std::wstring::npos. |offset[s]_for_adjustment| may be NULL.
64 void operator()(size_t& offset) { argument
65 if (offset >= limit_)
66 offset = T::npos;
72 // Adjustment function called by std::transform which will adjust any offset
93 void operator()(size_t& offset);
[all...]
/external/chromium/chrome/browser/ui/views/
H A Ddropdown_bar_view.h32 void set_animation_offset(int offset) { animation_offset_ = offset; } argument
34 // Returns the offset used while animating.
46 // part of it. The view needs to know the pixel offset at which we are drawing
H A Dpinned_contents_info_bubble.cc16 // Arrow offset is calculated from the middle of the |position_relative_to|.
17 int offset = position_relative_to.x() + (position_relative_to.width() / 2); local
18 offset -= bubble_anchor_.x();
22 offset += kLeftMargin + insets.left() + 1;
23 bubble_border_->SetArrowOffset(offset, contents_size);
/external/chromium/chrome/browser/ui/views/tabs/
H A Ddragged_tab_view.h34 // Sets the offset of the mouse from the upper left corner of the tab.
35 void set_mouse_tab_offset(const gfx::Point& offset) { argument
36 mouse_tab_offset_ = offset;
72 // The unscaled offset of the mouse from the top left of the dragged Tab.
73 // This is used to maintain an appropriate offset for the mouse pointer when
/external/chromium/net/disk_cache/
H A Dmapped_file_posix.cc36 size_t offset = block->offset() + view_size_; local
37 return Read(block->buffer(), block->size(), offset);
41 size_t offset = block->offset() + view_size_; local
42 return Write(block->buffer(), block->size(), offset);
H A Dmapped_file_win.cc46 size_t offset = block->offset() + view_size_; local
47 return Read(block->buffer(), block->size(), offset);
51 size_t offset = block->offset() + view_size_; local
52 return Write(block->buffer(), block->size(), offset);
/external/chromium_org/ash/display/
H A Ddisplay_layout.h39 DisplayLayout(Position position, int offset);
55 // The offset of the position of the secondary display. The offset is
57 int offset; member in struct:ash::DisplayLayout
/external/chromium_org/base/debug/
H A Dproc_maps_linux.h30 // Byte offset into |path| of the range mapped into memory.
31 unsigned long long offset; member in struct:base::debug::MappedMemoryRegion
/external/chromium_org/base/strings/
H A Dutf_offset_string_conversions.h18 // |offset[s]_for_adjustment| representing insertion/selection points between
21 // |src_len|. On exit, each offset will have been modified to point at the same
22 // logical position in the output string. If an offset cannot be successfully
26 // |offset[s]_for_adjustment| may be NULL.
59 void operator()(size_t& offset) { argument
60 if (offset > limit_)
61 offset = T::npos;
69 // address of the offset vector to adjust. Then Add() any number of Adjustments
91 void AdjustOffset(std::vector<size_t>::iterator offset);
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dfile_system_backend_delegate.cc47 int64 offset,
61 file_path, offset, expected_modification_time));
67 int64 offset,
80 context->default_file_task_runner(),file_path, offset));
45 CreateFileStreamReader( const fileapi::FileSystemURL& url, int64 offset, const base::Time& expected_modification_time, fileapi::FileSystemContext* context) argument
65 CreateFileStreamWriter( const fileapi::FileSystemURL& url, int64 offset, fileapi::FileSystemContext* context) argument
/external/chromium_org/chrome/browser/extensions/
H A Dblob_reader.cc38 void BlobReader::SetByteRange(int64 offset, int64 length) { argument
39 CHECK_GE(offset, 0);
41 CHECK_LE(offset, kint64max - length);
46 base::StringPrintf("bytes=%" PRId64 "-%" PRId64, offset,
47 offset + length - 1));
/external/chromium_org/chrome/browser/tab_contents/
H A Drender_view_context_menu_browsertest.cc103 gfx::Rect offset; local
106 tab->GetView()->GetContainerBounds(&offset);
107 mouse_event.globalX = 15 + offset.x();
108 mouse_event.globalY = 15 + offset.y();
/external/chromium_org/chrome/browser/ui/views/bookmarks/
H A Dbookmark_sync_promo_view.cc42 size_t offset; local
48 &offset);
56 promo_label->AddStyleRange(gfx::Range(offset, offset + link_text.length()),
61 gfx::Range before_link_range(0, offset);
64 gfx::Range after_link_range(offset + link_text.length(), promo_text.length());
/external/chromium_org/chrome/browser/ui/views/tabs/
H A Ddragged_tab_view.h33 // Sets the offset of the mouse from the upper left corner of the tab.
34 void set_mouse_tab_offset(const gfx::Point& offset) { argument
35 mouse_tab_offset_ = offset;
71 // The unscaled offset of the mouse from the top left of the dragged Tab.
72 // This is used to maintain an appropriate offset for the mouse pointer when
/external/chromium_org/components/autofill/core/browser/webdata/
H A Dautofill_entry_unittest.cc33 const int offset = 10000; local
38 internal_value + i * offset));
45 int last_offset = (kMaxAutofillTimeStamps * 2 - 1) * offset;
/external/chromium_org/content/browser/
H A Dhistogram_internals_request_job.cc24 int offset = parsed.CountCharactersBefore(url_parse::Parsed::PATH, false) + 1; local
26 if (offset < static_cast<int>(spec.size()))
27 path_.assign(spec.substr(offset));
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DNavigationController.java23 * @param offset The offset into the navigation history.
24 * @return Whether we can move in history by given offset
26 boolean canGoToOffset(int offset); argument
29 * Navigates to the specified offset from the "current entry". Does nothing if the offset is
31 * @param offset The offset into the navigation history.
33 void goToOffset(int offset); argument
/external/chromium_org/gpu/command_buffer/client/
H A Dring_buffer.cc71 Offset offset = free_offset_; local
72 blocks_.push_back(Block(offset, size, IN_USE));
77 return offset + base_offset_;
80 void RingBuffer::FreePendingToken(RingBuffer::Offset offset, argument
82 offset -= base_offset_;
88 if (block.offset == offset) {
90 << "block that corresponds to offset already freed";
/external/chromium_org/gpu/command_buffer/service/
H A Dcmd_parser.cc25 ptrdiff_t offset,
29 DCHECK_EQ(0, offset % 4);
32 DCHECK_GE(shm_size, offset + size);
35 char* buffer_begin = static_cast<char*>(shm_address) + offset;
59 DVLOG(1) << "Error: get offset out of bounds";
22 SetBuffer( void* shm_address, size_t shm_size, ptrdiff_t offset, size_t size) argument
/external/chromium_org/media/mp4/
H A Doffset_byte_queue.cc39 void OffsetByteQueue::PeekAt(int64 offset, const uint8** buf, int* size) { argument
40 DCHECK(offset >= head());
41 if (offset < head() || offset >= tail()) {
46 *buf = &buf_[offset - head()];
47 *size = tail() - offset;
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
H A Dfdopen.c22 static int fdopen_seek(void *cookie, off_t *offset, int whence) { argument
23 off_t ret = lseek((int) cookie, *offset, whence);
27 *offset = ret;
/external/chromium_org/net/base/
H A Dupload_data.cc26 uint64 offset, uint64 length,
30 elements_.back()->SetToFilePathRange(file_path, offset, length,
25 AppendFileRange(const base::FilePath& file_path, uint64 offset, uint64 length, const base::Time& expected_modification_time) argument

Completed in 1020 milliseconds

1234567891011>>