Searched refs:blob (Results 1 - 25 of 283) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/smhasher/src/
H A DBitvec.h9 void printbits ( const void * blob, int len );
10 void printhex32 ( const void * blob, int len );
11 void printbytes ( const void * blob, int len );
12 void printbytes2 ( const void * blob, int len );
17 uint32_t getbit ( const void * blob, int len, uint32_t bit );
18 uint32_t getbit_wrap ( const void * blob, int len, uint32_t bit );
20 void setbit ( void * blob, int len, uint32_t bit );
21 void setbit ( void * blob, int len, uint32_t bit, uint32_t val );
23 void clearbit ( void * blob, int len, uint32_t bit );
25 void flipbit ( void * blob, in
37 getbit( T & blob, uint32_t bit ) argument
42 getbit( uint32_t & blob, uint32_t bit ) argument
43 getbit( uint64_t & blob, uint32_t bit ) argument
48 setbit( T & blob, uint32_t bit ) argument
53 setbit( uint32_t & blob, uint32_t bit ) argument
54 setbit( uint64_t & blob, uint32_t bit ) argument
59 flipbit( T & blob, uint32_t bit ) argument
64 flipbit( uint32_t & blob, uint32_t bit ) argument
65 flipbit( uint64_t & blob, uint32_t bit ) argument
79 lshift( void * blob, int len, int c ) argument
91 rshift( void * blob, int len, int c ) argument
104 lshift( T & blob, int c ) argument
117 rshift( T & blob, int c ) argument
129 lshift( uint32_t & blob, int c ) argument
130 lshift( uint64_t & blob, int c ) argument
131 rshift( uint32_t & blob, int c ) argument
132 rshift( uint64_t & blob, int c ) argument
146 lrot( void * blob, int len, int c ) argument
158 rrot( void * blob, int len, int c ) argument
171 lrot( T & blob, int c ) argument
184 rrot( T & blob, int c ) argument
196 lrot( uint32_t & blob, int c ) argument
197 lrot( uint64_t & blob, int c ) argument
198 rrot( uint32_t & blob, int c ) argument
199 rrot( uint64_t & blob, int c ) argument
208 window( void * blob, int len, int start, int count ) argument
221 window( T & blob, int start, int count ) argument
234 window( uint32_t & blob, int start, int count ) argument
240 window( uint64_t & blob, int start, int count ) argument
[all...]
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-blob.cc68 static bool _try_writable (hb_blob_t *blob);
71 _hb_blob_destroy_user_data (hb_blob_t *blob) argument
73 if (blob->destroy) {
74 blob->destroy (blob->user_data);
75 blob->user_data = NULL;
76 blob->destroy = NULL;
82 * @data: (array length=length) (closure user_data) (destroy destroy) (scope notified) (transfer none): Pointer to blob data.
88 * Creates a new "blob" object wrapping @data. The @mode parameter is used
91 * Return value: New blob, o
103 hb_blob_t *blob; local
154 hb_blob_t *blob; local
213 hb_blob_reference(hb_blob_t *blob) argument
231 hb_blob_destroy(hb_blob_t *blob) argument
253 hb_blob_set_user_data(hb_blob_t *blob, hb_user_data_key_t *key, void * data, hb_destroy_func_t destroy, hb_bool_t replace) argument
274 hb_blob_get_user_data(hb_blob_t *blob, hb_user_data_key_t *key) argument
290 hb_blob_make_immutable(hb_blob_t *blob) argument
309 hb_blob_is_immutable(hb_blob_t *blob) argument
326 hb_blob_get_length(hb_blob_t *blob) argument
343 hb_blob_get_data(hb_blob_t *blob, unsigned int *length) argument
368 hb_blob_get_data_writable(hb_blob_t *blob, unsigned int *length) argument
385 _try_make_writable_inplace_unix(hb_blob_t *blob) argument
428 _try_writable_inplace(hb_blob_t *blob) argument
443 _try_writable(hb_blob_t *blob) argument
[all...]
H A Dhb-blob.h43 * that is passed to HarfBuzz in a blob. If there is
75 * Even if the parent blob is writable, we don't
76 * want the user of the sub-blob to be able to
89 hb_blob_reference (hb_blob_t *blob);
92 hb_blob_destroy (hb_blob_t *blob);
95 hb_blob_set_user_data (hb_blob_t *blob,
103 hb_blob_get_user_data (hb_blob_t *blob,
108 hb_blob_make_immutable (hb_blob_t *blob);
111 hb_blob_is_immutable (hb_blob_t *blob);
115 hb_blob_get_length (hb_blob_t *blob);
[all...]
H A Dhb-face-private.hh67 hb_blob_t *blob; local
72 blob = reference_table_func (/*XXX*/const_cast<hb_face_t *> (this), tag, user_data);
73 if (unlikely (!blob))
76 return blob;
H A Dtest-size-params.cc46 hb_blob_t *blob = NULL; local
53 /* Create the blob */
82 blob = hb_blob_create (font_data, len, mm, user_data, destroy);
86 hb_face_t *face = hb_face_create (blob, 0 /* first face */);
87 hb_blob_destroy (blob);
88 blob = NULL;
H A Dtest-would-substitute.cc50 hb_blob_t *blob = NULL; local
57 /* Create the blob */
86 blob = hb_blob_create (font_data, len, mm, user_data, destroy);
90 hb_face_t *face = hb_face_create (blob, 0 /* first face */);
91 hb_blob_destroy (blob);
92 blob = NULL;
/external/harfbuzz_ng/src/
H A Dhb-blob.cc68 static bool _try_writable (hb_blob_t *blob);
71 _hb_blob_destroy_user_data (hb_blob_t *blob) argument
73 if (blob->destroy) {
74 blob->destroy (blob->user_data);
75 blob->user_data = NULL;
76 blob->destroy = NULL;
82 * @data: (array length=length) (closure user_data) (destroy destroy) (scope notified) (transfer none): Pointer to blob data.
88 * Creates a new "blob" object wrapping @data. The @mode parameter is used
91 * Return value: New blob, o
103 hb_blob_t *blob; local
154 hb_blob_t *blob; local
213 hb_blob_reference(hb_blob_t *blob) argument
231 hb_blob_destroy(hb_blob_t *blob) argument
253 hb_blob_set_user_data(hb_blob_t *blob, hb_user_data_key_t *key, void * data, hb_destroy_func_t destroy, hb_bool_t replace) argument
274 hb_blob_get_user_data(hb_blob_t *blob, hb_user_data_key_t *key) argument
290 hb_blob_make_immutable(hb_blob_t *blob) argument
309 hb_blob_is_immutable(hb_blob_t *blob) argument
326 hb_blob_get_length(hb_blob_t *blob) argument
343 hb_blob_get_data(hb_blob_t *blob, unsigned int *length) argument
368 hb_blob_get_data_writable(hb_blob_t *blob, unsigned int *length) argument
385 _try_make_writable_inplace_unix(hb_blob_t *blob) argument
428 _try_writable_inplace(hb_blob_t *blob) argument
443 _try_writable(hb_blob_t *blob) argument
[all...]
H A Dhb-blob.h43 * that is passed to HarfBuzz in a blob. If there is
75 * Even if the parent blob is writable, we don't
76 * want the user of the sub-blob to be able to
89 hb_blob_reference (hb_blob_t *blob);
92 hb_blob_destroy (hb_blob_t *blob);
95 hb_blob_set_user_data (hb_blob_t *blob,
103 hb_blob_get_user_data (hb_blob_t *blob,
108 hb_blob_make_immutable (hb_blob_t *blob);
111 hb_blob_is_immutable (hb_blob_t *blob);
115 hb_blob_get_length (hb_blob_t *blob);
[all...]
H A Dsample.py10 blob = hb.blob_create (fontdata, hb.memory_mode_t.WRITABLE, None, nothing) variable
11 print blob
H A Dhb-face-private.hh67 hb_blob_t *blob; local
72 blob = reference_table_func (/*XXX*/const_cast<hb_face_t *> (this), tag, user_data);
73 if (unlikely (!blob))
76 return blob;
H A Dtest-size-params.cc46 hb_blob_t *blob = NULL; local
53 /* Create the blob */
82 blob = hb_blob_create (font_data, len, mm, user_data, destroy);
86 hb_face_t *face = hb_face_create (blob, 0 /* first face */);
87 hb_blob_destroy (blob);
88 blob = NULL;
H A Dtest-would-substitute.cc50 hb_blob_t *blob = NULL; local
57 /* Create the blob */
86 blob = hb_blob_create (font_data, len, mm, user_data, destroy);
90 hb_face_t *face = hb_face_create (blob, 0 /* first face */);
91 hb_blob_destroy (blob);
92 blob = NULL;
/external/chromium_org/content/test/data/service_worker/
H A Dfetch_event_reload.js8 var blob = new Blob(['<title>reload='+ event.isReload + '</title>']);
9 var response = new Response(blob);
H A Dfetch_event.js9 var blob = new Blob(["This resource is gone. Gone, gone, gone."]);
10 var response = new Response(blob, {
/external/chromium_org/third_party/WebKit/Source/core/fileapi/
H A DFileReaderSync.idl36 [CallWith=ExecutionContext, RaisesException] ArrayBuffer readAsArrayBuffer(Blob blob);
37 [CallWith=ExecutionContext, RaisesException] DOMString readAsBinaryString(Blob blob);
38 [CallWith=ExecutionContext, RaisesException] DOMString readAsText(Blob blob, optional DOMString encoding);
39 [CallWith=ExecutionContext, RaisesException] DOMString readAsDataURL(Blob blob);
H A DFileReaderSync.cpp48 PassRefPtr<ArrayBuffer> FileReaderSync::readAsArrayBuffer(ExecutionContext* executionContext, Blob* blob, ExceptionState& exceptionState) argument
50 if (!blob) {
56 startLoading(executionContext, loader, *blob, exceptionState);
61 String FileReaderSync::readAsBinaryString(ExecutionContext* executionContext, Blob* blob, ExceptionState& exceptionState) argument
63 if (!blob) {
69 startLoading(executionContext, loader, *blob, exceptionState);
73 String FileReaderSync::readAsText(ExecutionContext* executionContext, Blob* blob, const String& encoding, ExceptionState& exceptionState) argument
75 if (!blob) {
82 startLoading(executionContext, loader, *blob, exceptionState);
86 String FileReaderSync::readAsDataURL(ExecutionContext* executionContext, Blob* blob, ExceptionStat argument
99 startLoading(ExecutionContext* executionContext, FileReaderLoader& loader, const Blob& blob, ExceptionState& exceptionState) argument
[all...]
H A DFileReader.idl47 [RaisesException] void readAsArrayBuffer(Blob blob);
48 [RaisesException] void readAsBinaryString(Blob blob);
49 [RaisesException] void readAsText(Blob blob, optional DOMString encoding);
50 [RaisesException] void readAsDataURL(Blob blob);
/external/javasqlite/src/main/java/SQLite/
H A DBlob.java7 * SQLite 3.4.0 incremental blob I/O interface.
16 private Blob blob; field in class:BlobR
25 * Contruct InputStream from blob instance.
28 BlobR(Blob blob) { argument
29 this.blob = blob;
39 int ret = blob.size - pos;
67 * Close this blob InputStream.
71 blob.close();
72 blob
162 private Blob blob; field in class:BlobW
174 BlobW(Blob blob) argument
[all...]
/external/wpa_supplicant_8/wpa_supplicant/
H A Dconfig_none.c40 struct wpa_config_blob *blob; local
51 for (blob = config->blobs; blob; blob = blob->next) {
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebArrayBuffer.cpp69 WebArrayBuffer::WebArrayBuffer(const PassRefPtr<ArrayBuffer>& blob) argument
70 : m_private(blob)
74 WebArrayBuffer& WebArrayBuffer::operator=(const PassRefPtr<ArrayBuffer>& blob) argument
76 m_private = blob;
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebBlob.cpp37 #include "platform/blob/BlobData.h"
44 RefPtrWillBeRawPtr<Blob> blob = Blob::create(BlobDataHandle::create(uuid, type, size)); local
45 return WebBlob(blob);
52 RefPtrWillBeRawPtr<Blob> blob = Blob::create(BlobDataHandle::create(blobData.release(), size)); local
53 return WebBlob(blob);
60 Blob* blob = V8Blob::toImpl(object); local
61 ASSERT(blob);
62 return WebBlob(blob);
91 WebBlob::WebBlob(const PassRefPtrWillBeRawPtr<Blob>& blob) argument
92 : m_private(blob)
96 operator =(const PassRefPtrWillBeRawPtr<Blob>& blob) argument
[all...]
/external/chromium_org/third_party/sqlite/src/test/
H A Dwal_common.tcl42 proc wal_cksum {endian ckv1 ckv2 blob} {
52 binary scan $blob $scanpattern values
58 set blob [binary format I6 $intlist]
63 wal_cksum $endian c1 c2 $blob
64 append blob [binary format II $c1 $c2]
70 puts -nonewline $fd $blob
77 set blob [read $fd 24]
80 binary scan $blob I6 ints
H A Dfts3_common.tcl210 upvar $varname blob
211 set n [read_fts3varint $blob ret]
212 set blob [string range $blob $n end]
216 upvar $varname blob
217 set ret [string range $blob 0 [expr $nLength-1]]
218 set blob [string range $blob $nLength end]
222 # The argument is a blob of data representing an FTS3 segment leaf.
226 proc fts3_readleaf {blob} {
[all...]
/external/chromium_org/third_party/WebKit/Source/core/clipboard/
H A DDataObjectTest.cpp37 RefPtrWillBeRawPtr<Blob> blob = item->getAsFile(); local
38 ASSERT_TRUE(blob->isFile());
39 RefPtrWillBeRawPtr<File> file = toFile(blob.get());
56 RefPtrWillBeRawPtr<Blob> blob = item->getAsFile(); local
57 ASSERT_TRUE(blob->isFile());
58 RefPtrWillBeRawPtr<File> file = toFile(blob.get());
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDOMURL.cpp37 #include "platform/blob/BlobURL.h"
65 String DOMURL::createObjectURL(ExecutionContext* executionContext, Blob* blob, ExceptionState& exceptionState) argument
67 if (!executionContext || !blob)
69 if (blob->hasBeenClosed()) {
70 exceptionState.throwDOMException(InvalidStateError, String(blob->isFile() ? "File" : "Blob") + " has been closed.");
73 return createPublicURL(executionContext, blob, blob->uuid());

Completed in 335 milliseconds

1234567891011>>