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

123456789

/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.cc35 #include "hb-blob.h"
70 static bool _try_writable (hb_blob_t *blob);
73 _hb_blob_destroy_user_data (hb_blob_t *blob) argument
75 if (blob->destroy) {
76 blob->destroy (blob->user_data);
77 blob->user_data = NULL;
78 blob->destroy = NULL;
89 hb_blob_t *blob; local
91 if (!length || !(blob
120 hb_blob_t *blob; local
156 hb_blob_reference(hb_blob_t *blob) argument
162 hb_blob_destroy(hb_blob_t *blob) argument
172 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
182 hb_blob_get_user_data(hb_blob_t *blob, hb_user_data_key_t *key) argument
190 hb_blob_make_immutable(hb_blob_t *blob) argument
199 hb_blob_is_immutable(hb_blob_t *blob) argument
206 hb_blob_get_length(hb_blob_t *blob) argument
212 hb_blob_get_data(hb_blob_t *blob, unsigned int *length) argument
221 hb_blob_get_data_writable(hb_blob_t *blob, unsigned int *length) argument
238 _try_make_writable_inplace_unix(hb_blob_t *blob) argument
281 _try_writable_inplace(hb_blob_t *blob) argument
296 _try_writable(hb_blob_t *blob) argument
[all...]
H A Dhb-blob.h43 * that is passed to HarfBuzz in a blob. If there is
76 * Even if the parent blob is writable, we don't
77 * want the user of the sub-blob to be able to
90 hb_blob_reference (hb_blob_t *blob);
93 hb_blob_destroy (hb_blob_t *blob);
96 hb_blob_set_user_data (hb_blob_t *blob,
104 hb_blob_get_user_data (hb_blob_t *blob,
109 hb_blob_make_immutable (hb_blob_t *blob);
112 hb_blob_is_immutable (hb_blob_t *blob);
116 hb_blob_get_length (hb_blob_t *blob);
[all...]
H A Dtest-size-params.cc43 hb_blob_t *blob = NULL; local
50 /* Create the blob */
79 blob = hb_blob_create (font_data, len, mm, user_data, destroy);
83 hb_face_t *face = hb_face_create (blob, 0 /* first face */);
84 hb_blob_destroy (blob);
85 blob = NULL;
H A Dtest-would-substitute.cc47 hb_blob_t *blob = NULL; local
54 /* Create the blob */
83 blob = hb_blob_create (font_data, len, mm, user_data, destroy);
87 hb_face_t *face = hb_face_create (blob, 0 /* first face */);
88 hb_blob_destroy (blob);
89 blob = NULL;
/external/harfbuzz_ng/src/
H A Dhb-blob.cc32 #include "hb-blob.h"
67 static bool _try_writable (hb_blob_t *blob);
70 _hb_blob_destroy_user_data (hb_blob_t *blob) argument
72 if (blob->destroy) {
73 blob->destroy (blob->user_data);
74 blob->user_data = NULL;
75 blob->destroy = NULL;
86 hb_blob_t *blob; local
88 if (!length || !(blob
117 hb_blob_t *blob; local
153 hb_blob_reference(hb_blob_t *blob) argument
159 hb_blob_destroy(hb_blob_t *blob) argument
169 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
179 hb_blob_get_user_data(hb_blob_t *blob, hb_user_data_key_t *key) argument
187 hb_blob_make_immutable(hb_blob_t *blob) argument
196 hb_blob_is_immutable(hb_blob_t *blob) argument
203 hb_blob_get_length(hb_blob_t *blob) argument
209 hb_blob_get_data(hb_blob_t *blob, unsigned int *length) argument
218 hb_blob_get_data_writable(hb_blob_t *blob, unsigned int *length) argument
235 _try_make_writable_inplace_unix(hb_blob_t *blob) argument
278 _try_writable_inplace(hb_blob_t *blob) argument
293 _try_writable(hb_blob_t *blob) argument
[all...]
H A Dhb-blob.h43 * that is passed to HarfBuzz in a blob. If there is
76 * Even if the parent blob is writable, we don't
77 * want the user of the sub-blob to be able to
90 hb_blob_reference (hb_blob_t *blob);
93 hb_blob_destroy (hb_blob_t *blob);
96 hb_blob_set_user_data (hb_blob_t *blob,
104 hb_blob_get_user_data (hb_blob_t *blob,
109 hb_blob_make_immutable (hb_blob_t *blob);
112 hb_blob_is_immutable (hb_blob_t *blob);
116 hb_blob_get_length (hb_blob_t *blob);
[all...]
H A Dtest-size-params.cc43 hb_blob_t *blob = NULL; local
50 /* Create the blob */
79 blob = hb_blob_create (font_data, len, mm, user_data, destroy);
83 hb_face_t *face = hb_face_create (blob, 0 /* first face */);
84 hb_blob_destroy (blob);
85 blob = NULL;
H A Dtest-would-substitute.cc47 hb_blob_t *blob = NULL; local
54 /* Create the blob */
83 blob = hb_blob_create (font_data, len, mm, user_data, destroy);
87 hb_face_t *face = hb_face_create (blob, 0 /* first face */);
88 hb_blob_destroy (blob);
89 blob = NULL;
/external/harfbuzz_ng/src/hb-icu-le/
H A DFontTableCache.cpp19 hb_blob_t *blob; member in struct:FontTableCacheEntry
34 fTableCache[i].blob = NULL;
41 hb_blob_destroy(fTableCache[i].blob);
44 fTableCache[i].blob = NULL;
52 void FontTableCache::freeFontTable(hb_blob_t *blob) const
54 hb_blob_destroy(blob);
61 return hb_blob_get_data(fTableCache[i].blob, NULL);
65 hb_blob_t *blob = readFontTable(tableTag); local
67 ((FontTableCache *) this)->add(tableTag, blob);
69 return hb_blob_get_data (blob, NUL
72 add(LETag tableTag, hb_blob_t *blob) argument
[all...]
H A DFontTableCache.h13 #include <hb-blob.h>
35 virtual void freeFontTable(hb_blob_t *blob) const;
39 void add(LETag tableTag, hb_blob_t *blob);
/external/chromium_org/third_party/WebKit/Source/core/fileapi/
H A DFileReaderSync.idl35 [CallWith=ScriptExecutionContext, RaisesException] ArrayBuffer readAsArrayBuffer(Blob blob);
36 [CallWith=ScriptExecutionContext, RaisesException] DOMString readAsBinaryString(Blob blob);
37 [CallWith=ScriptExecutionContext, RaisesException] DOMString readAsText(Blob blob, optional DOMString encoding);
38 [CallWith=ScriptExecutionContext, RaisesException] DOMString readAsDataURL(Blob blob);
H A DFileReaderSync.cpp49 PassRefPtr<ArrayBuffer> FileReaderSync::readAsArrayBuffer(ScriptExecutionContext* scriptExecutionContext, Blob* blob, ExceptionState& es) argument
51 if (!blob) {
57 startLoading(scriptExecutionContext, loader, *blob, es);
62 String FileReaderSync::readAsBinaryString(ScriptExecutionContext* scriptExecutionContext, Blob* blob, ExceptionState& es) argument
64 if (!blob) {
70 startLoading(scriptExecutionContext, loader, *blob, es);
74 String FileReaderSync::readAsText(ScriptExecutionContext* scriptExecutionContext, Blob* blob, const String& encoding, ExceptionState& es) argument
76 if (!blob) {
83 startLoading(scriptExecutionContext, loader, *blob, es);
87 String FileReaderSync::readAsDataURL(ScriptExecutionContext* scriptExecutionContext, Blob* blob, ExceptionStat argument
100 startLoading(ScriptExecutionContext* scriptExecutionContext, FileReaderLoader& loader, const Blob& blob, ExceptionState& es) argument
[all...]
H A DFileReader.cpp49 const CString utf8BlobURL(Blob* blob) argument
51 return blob->url().string().utf8();
54 const CString utf8FilePath(Blob* blob) argument
56 return blob->isFile() ? toFile(blob)->path().utf8() : "";
101 void FileReader::readAsArrayBuffer(Blob* blob, ExceptionState& es) argument
103 if (!blob)
106 LOG(FileAPI, "FileReader: reading as array buffer: %s %s\n", utf8BlobURL(blob).data(), utf8FilePath(blob).data());
108 readInternal(blob, FileReaderLoade
111 readAsBinaryString(Blob* blob, ExceptionState& es) argument
121 readAsText(Blob* blob, const String& encoding, ExceptionState& es) argument
132 readAsText(Blob* blob, ExceptionState& es) argument
137 readAsDataURL(Blob* blob, ExceptionState& es) argument
147 readInternal(Blob* blob, FileReaderLoader::ReadType type, ExceptionState& es) argument
[all...]
H A DFileReader.idl45 [RaisesException] void readAsArrayBuffer(Blob blob);
46 [RaisesException] void readAsBinaryString(Blob blob);
47 [RaisesException] void readAsText(Blob blob, optional DOMString encoding);
48 [RaisesException] void readAsDataURL(Blob blob);
H A DBlobBuilder.cpp93 void BlobBuilder::append(Blob* blob) argument
95 if (!blob)
97 if (blob->isFile()) {
98 File* file = toFile(blob);
99 // If the blob is file that is not snapshoted, capture the snapshot now.
111 long long blobSize = static_cast<long long>(blob->size());
113 m_items.append(BlobDataItem(blob->url(), 0, blobSize));
131 RefPtr<Blob> blob = Blob::create(blobData.release(), m_size); local
133 // After creating a blob from the current blob dat
[all...]
/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/web/
H A DWebBlob.cpp48 RefPtr<Blob> blob = Blob::create(blobData.release(), size); local
49 return WebBlob(blob);
56 Blob* blob = V8Blob::toNative(object); local
57 ASSERT(blob);
58 return WebBlob(blob);
87 WebBlob::WebBlob(const WTF::PassRefPtr<WebCore::Blob>& blob) argument
88 : m_private(blob)
92 WebBlob& WebBlob::operator=(const WTF::PassRefPtr<WebCore::Blob>& blob) argument
94 m_private = blob;
/external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/
H A DTestOverloadedConstructors.idl31 Constructor(Blob blob),
/external/chromium_org/chrome/renderer/extensions/
H A Dfeedback_private_custom_bindings.cc16 WebKit::WebBlob blob = WebKit::WebBlob::fromV8Value(args[0]); local
17 args.GetReturnValue().Set(v8::String::New(blob.url().spec().data()));
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DURL.idl32 [CallWith=ScriptExecutionContext,TreatReturnedNullStringAs=Null] static DOMString createObjectURL(Blob? blob);
H A DFormDataList.h37 Item(PassRefPtr<Blob> blob, const String& filename) : m_blob(blob), m_filename(filename) { } argument
40 Blob* blob() const { return m_blob.get(); } function in class:WebCore::FormDataList::Item
66 void appendBlob(const String& key, PassRefPtr<Blob> blob, const String& filename = String()) argument
69 appendBlob(blob, filename);
/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...]

Completed in 565 milliseconds

123456789