Home
last modified time | relevance | path

Searched refs:source_bytes (Results 1 – 3 of 3) sorted by relevance

/external/sfntly/cpp/src/test/
Dopen_type_data_test.cc46 ByteVector source_bytes(1024); in TestOTFCopy() local
47 for (size_t i = 0; i < source_bytes.size(); ++i) { in TestOTFCopy()
48 source_bytes[i] = (byte_t)(i & 0xff); in TestOTFCopy()
50 ByteArrayPtr source_array = new MemoryByteArray(&(source_bytes[0]), 1024); in TestOTFCopy()
60 EXPECT_TRUE(std::equal(source_bytes.begin(), source_bytes.end(), in TestOTFCopy()
/external/llvm/bindings/python/llvm/
Ddisassembler.py122 source_bytes = c_char_p(source)
126 buf = cast(source_bytes, POINTER(c_ubyte * len(source))).contents
/external/v8/tools/
Djs2c.py422 def BuildMetadata(sources, source_bytes, native_type): argument
434 total_length = len(source_bytes)
462 have_raw_sources = source_bytes == raw_sources
469 "sources_declaration": SOURCES_DECLARATION % ToCArray(source_bytes),