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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/smhasher/src/
Bitvec.h 9 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, int len, uint32_t bit )
    [all...]
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-blob.cc 66 static bool _try_writable (hb_blob_t *blob);
69 _hb_blob_destroy_user_data (hb_blob_t *blob)
71 if (blob->destroy) {
72 blob->destroy (blob->user_data);
73 blob->user_data = NULL;
74 blob->destroy = NULL;
80 * @data: (array length=length) (closure user_data) (destroy destroy) (scope notified) (transfer none): Pointer to blob data.
86 * Creates a new "blob" object wrapping @data. The @mode parameter is used
89 * Return value: New blob, or the empty blob if something failed or if @length i
101 hb_blob_t *blob; local
152 hb_blob_t *blob; local
    [all...]
hb-blob.h 43 * 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...]
hb-face-private.hh 67 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;
test-size-params.cc 46 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;
test-would-substitute.cc 50 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/
hb-blob.cc 68 static bool _try_writable (hb_blob_t *blob);
71 _hb_blob_destroy_user_data (hb_blob_t *blob)
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, or the empty blob if something failed or if @length i
103 hb_blob_t *blob; local
154 hb_blob_t *blob; local
    [all...]
hb-blob.h 43 * 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...]
sample.py 10 blob = hb.blob_create (fontdata, hb.memory_mode_t.WRITABLE, None, nothing) variable
11 print blob
hb-face-private.hh 67 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;
  /external/chromium_org/third_party/WebKit/Source/core/fileapi/
FileReaderSync.idl 36 [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);
FileReaderSync.cpp 36 #include "core/fileapi/Blob.h"
49 PassRefPtr<ArrayBuffer> FileReaderSync::readAsArrayBuffer(ExecutionContext* executionContext, Blob* blob, ExceptionState& exceptionState)
51 if (!blob) {
57 startLoading(executionContext, loader, *blob, exceptionState);
62 String FileReaderSync::readAsBinaryString(ExecutionContext* executionContext, Blob* blob, ExceptionState& exceptionState)
64 if (!blob) {
70 startLoading(executionContext, loader, *blob, exceptionState);
74 String FileReaderSync::readAsText(ExecutionContext* executionContext, Blob* blob, const String& encoding, ExceptionState& exceptionState
    [all...]
FileReader.cpp 54 const CString utf8BlobUUID(Blob* blob)
56 return blob->uuid().utf8();
59 const CString utf8FilePath(Blob* blob)
61 return blob->hasBackingFile() ? toFile(blob)->path().utf8() : "";
169 void FileReader::readAsArrayBuffer(Blob* blob, ExceptionState& exceptionState)
171 if (!blob) {
    [all...]
FileReader.idl 46 [RaisesException] void readAsArrayBuffer(Blob blob);
47 [RaisesException] void readAsBinaryString(Blob blob);
48 [RaisesException] void readAsText(Blob blob, optional DOMString encoding);
49 [RaisesException] void readAsDataURL(Blob blob);
  /external/javasqlite/src/main/java/SQLite/
Blob.java 7 * SQLite 3.4.0 incremental blob I/O interface.
13 * Blob instance
16 private Blob blob; field in class:BlobR
25 * Contruct InputStream from blob instance.
28 BlobR(Blob blob) {
29 this.blob = blob;
39 int ret = blob.size - pos
162 private Blob blob; field in class:BlobW
    [all...]
  /external/wpa_supplicant_8/wpa_supplicant/
config_none.c 40 struct wpa_config_blob *blob; local
51 for (blob = config->blobs; blob; blob = blob->next) {
  /system/keymaster/
openssl_utils.h 41 inline void convert_bn_to_blob(BIGNUM* bn, keymaster_blob_t* blob) {
42 blob->data_length = BN_num_bytes(bn);
43 blob->data = new uint8_t[blob->data_length];
44 BN_bn2bin(bn, const_cast<uint8_t*>(blob->data));
google_softkeymaster.h 29 root_of_trust.blob.data = reinterpret_cast<const uint8_t*>("SW");
30 root_of_trust.blob.data_length = 2;
39 keymaster_key_blob_t blob; local
40 blob.key_material = master_key_;
41 blob.key_material_size = 16;
42 return blob;
google_keymaster_test_utils.cpp 80 if ((a.blob.data == NULL || b.blob.data == NULL) && a.blob.data != b.blob.data)
82 return a.blob.data_length == b.blob.data_length &&
83 (memcmp(a.blob.data, b.blob.data, a.blob.data_length) == 0);
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebArrayBuffer.cpp 69 WebArrayBuffer::WebArrayBuffer(const PassRefPtr<ArrayBuffer>& blob)
70 : m_private(blob)
74 WebArrayBuffer& WebArrayBuffer::operator=(const PassRefPtr<ArrayBuffer>& blob)
76 m_private = blob;
  /external/chromium_org/third_party/WebKit/Source/web/
WebBlob.cpp 36 #include "core/fileapi/Blob.h"
37 #include "platform/blob/BlobData.h"
46 RefPtrWillBeRawPtr<Blob> blob = Blob::create(BlobDataHandle::create(uuid, type, size)); local
47 return WebBlob(blob);
54 RefPtrWillBeRawPtr<Blob> blob = Blob::create(BlobDataHandle::create(blobData.release(), size)); local
55 return WebBlob(blob);
62 Blob* blob = V8Blob::toNative(object); local
    [all...]
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/test/android/
scrape_gtest_log.py 22 blob = sys.stdin.read()
24 re.findall(r'{([^}]*.?)}', blob)) + ']'
  /external/chromium_org/third_party/sqlite/src/test/
wal_common.tcl 42 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
fts3_common.tcl 210 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/dom/
DOMURL.cpp 35 #include "core/fileapi/Blob.h"
37 #include "platform/blob/BlobURL.h"
66 String DOMURL::createObjectURL(ExecutionContext* executionContext, Blob* blob, ExceptionState& exceptionState)
68 if (!executionContext || !blob)
70 if (blob->hasBeenClosed()) {
71 exceptionState.throwDOMException(InvalidStateError, String(blob->isFile() ? "File" : "Blob") + " has been closed.");
74 return createPublicURL(executionContext, blob, blob->uuid())
    [all...]

Completed in 2441 milliseconds

1 2 3 4 5 6 7 8 91011>>