Home
last modified time | relevance | path

Searched refs:data (Results 3251 - 3275 of 17044) sorted by relevance

1...<<131132133134135136137138139140>>...682

/third_party/openssl/ohos_lite/include/openssl/
H A Dcast.h29 CAST_LONG data[32]; member
33 void CAST_set_key(CAST_KEY *key, int len, const unsigned char *data);
36 void CAST_encrypt(CAST_LONG *data, const CAST_KEY *key);
37 void CAST_decrypt(CAST_LONG *data, const CAST_KEY *key);
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/component/
H A DNumRecord.java3 import com.google.typography.font.sfntly.data.ReadableFontData;
4 import com.google.typography.font.sfntly.data.WritableFontData;
11 NumRecord(ReadableFontData data, int base) { in NumRecord() argument
12 this.value = data.readUShort(base + TAG_POS); in NumRecord()
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/tools/sva/src/
H A Dtoken.js35 * @param {Any} data Data attached to the token
38 constructor(type, line, data) {
41 this.data_ = data;
48 get data() { return this.data_; }
49 set data(val) { this.data_ = val; }
/third_party/skia/third_party/externals/libwebp/imageio/
H A Dwebpdec.h32 // Reads a WebP from 'in_file', returning the contents and size in 'data' and
36 const uint8_t** data, size_t* data_size,
39 // Decodes the WebP contained in 'data'.
44 VP8StatusCode DecodeWebP(const uint8_t* const data, size_t data_size,
49 const uint8_t* const data, size_t data_size,
54 // Decodes a WebP contained in 'data', returning the decoded output in 'pic'.
59 int ReadWebP(const uint8_t* const data, size_t data_size,
/third_party/skia/third_party/externals/oboe/samples/iolib/src/main/cpp/player/
H A DOneShotSampleSource.cpp35 const float* data = mSampleBuffer->getSampleData(); in mixAudio() local
39 outBuff[frameIndex] += data[mCurFrameIndex++] * mGain; in mixAudio()
45 outBuff[dstSampleIndex++] += data[mCurFrameIndex] * mLeftGain; in mixAudio()
46 outBuff[dstSampleIndex++] += data[mCurFrameIndex++] * mRightGain; in mixAudio()
/third_party/skia/third_party/externals/piex/src/
H A Dpiex.h34 // // The input data seems to be broken.
37 // // The input data is not supported.
59 // Returns true if 'data' contains a RAW file format, even if it is not
62 bool IsRaw(StreamInterface* data);
64 // Gets the largest JPEG compressed preview image data. On success
68 // Returns 'kFail' when something with the data is wrong.
73 Error GetPreviewImageData(StreamInterface* data,
78 bool GetDngInformation(StreamInterface* data, std::uint32_t* width,
84 bool GetOrientation(StreamInterface* data, std::uint32_t* orientation);
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/table/bitmap/
H A Dsimple_bitmap_glyph.h30 Builder(WritableFontData* data, int32_t format);
31 Builder(ReadableFontData* data, int32_t format);
34 virtual CALLER_ATTACH FontDataTable* SubBuildTable(ReadableFontData* data);
37 SimpleBitmapGlyph(ReadableFontData* data, int32_t format);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
H A DThreadLocal.cpp26 ThreadLocalImpl::ThreadLocalImpl() : data() { } in ThreadLocalImpl()
29 static_assert(sizeof(d) <= sizeof(data), "size too big"); in setInstance()
30 void **pd = reinterpret_cast<void**>(&data); in setInstance()
34 void **pd = reinterpret_cast<void**>(&data); in getInstance()
/third_party/skia/third_party/externals/tint/src/utils/io/
H A Dtmpfile.h45 /// Opens the temporary file and appends |size| bytes from |data| to the end
49 /// @param data the data to write to the end of the file
50 /// @param size the number of bytes to write from data
52 bool Append(const void* data, size_t size) const;
55 /// @param data the data to write to the end of the file
58 inline TmpFile& operator<<(T&& data) { in operator <<() argument
60 ss << data; in operator <<() local
62 Append(str.data(), st in operator <<()
[all...]
/third_party/skia/third_party/externals/zlib/contrib/tests/fuzzers/
H A Dinflate_fuzzer.cc16 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { in LLVMFuzzerTestOneInput() argument
18 std::vector<unsigned char> input_buffer{data, data+size}; in LLVMFuzzerTestOneInput()
23 stream.next_in = input_buffer.data(); in LLVMFuzzerTestOneInput()
/third_party/typescript/tests/baselines/reference/
H A DspreadTypeRemovesReadonly.js6 const data: ReadonlyData = { value: 'foo' };
7 const clone = { ...data };
23 var data = { value: 'foo' };
24 var clone = __assign({}, data);
H A DstaticMethodReferencingTypeArgument1.js7 constructor(public isHead: boolean, public data: T) {
23 function List(isHead, data) {
25 this.data = data;
H A DwrappedAndRecursiveConstraints.js5 constructor(public data: T) { }
22 function C(data) {
23 this.data = data;
/third_party/protobuf/src/google/protobuf/stubs/
H A Dstructurally_valid_unittest.cc1 // Protocol Buffers - Google's data interchange format
47 EXPECT_TRUE(IsStructurallyValidUTF8(valid_str.data(), in TEST()
51 EXPECT_TRUE(IsStructurallyValidUTF8(valid_str.data() + i, in TEST()
58 EXPECT_FALSE(IsStructurallyValidUTF8(invalid_str.data(), in TEST()
62 EXPECT_FALSE(IsStructurallyValidUTF8(invalid_str.data() + i, in TEST()
/third_party/python/Modules/
H A D_cryptmodule.c42 struct crypt_data data; in crypt_crypt_impl() local
43 memset(&data, 0, sizeof(data)); in crypt_crypt_impl()
44 crypt_result = crypt_r(word, salt, &data); in crypt_crypt_impl()
/third_party/skia/docs/examples/
H A DCanvas_readPixels_a.cpp11 sk_sp<SkData> data(SkData::MakeUninitialized(info.minRowBytes() * info.height())); in REG_FIDDLE()
12 sk_bzero(data->writable_data(), info.minRowBytes() * info.height()); in REG_FIDDLE()
15 canvas->readPixels(info, data->writable_data(), info.minRowBytes(), x, y); in REG_FIDDLE()
18 sk_sp<SkImage> image = SkImage::MakeRasterData(info, data, info.minRowBytes()); in REG_FIDDLE()
/third_party/rust/crates/syn/src/
H A Dparse_macro_input.rs111 $crate::__private::Ok(data) => data,
119 $crate::__private::Ok(data) => data,
/third_party/spirv-tools/tools/sva/src/
H A Dtoken.js35 * @param {Any} data Data attached to the token
38 constructor(type, line, data) {
41 this.data_ = data;
48 get data() { return this.data_; }
49 set data(val) { this.data_ = val; }
/third_party/vk-gl-cts/framework/delibs/decpp/
H A DdeSha1.cpp39 Sha1 Sha1::compute (size_t size, const void* data) in compute() argument
43 deSha1_compute(&hash, size, data); in compute()
52 void Sha1Stream::process (size_t size, const void* data) in process() argument
54 deSha1Stream_process(&m_stream, size, data); in process()
/third_party/elfutils/src/
H A Dstrip.c382 /* Get the extended section index table data for a symbol table section. */
483 The addend is contained in the original data at in relocate()
604 /* Make sure we adjust the uncompressed debug data in remove_debug_relocations()
881 /* Copy over section data. */ in handle_debug_relocs()
882 Elf_Data *data = NULL; in handle_debug_relocs() local
883 while ((data = elf_getdata (scn, data)) != NULL) in handle_debug_relocs()
888 error (0, 0, "couldn't create new section data: %s", in handle_debug_relocs()
892 *new_data = *data; in handle_debug_relocs()
951 /* Update section headers when the data siz
999 Elf_Data *data; handle_elf() member
[all...]
/third_party/icu/icu4c/source/common/
H A Dlocid.cpp208 Locale *newDefault = (Locale *)uhash_get(gDefaultLocalesHashT, localeNameBuf.data()); in locale_set_default_internal()
215 newDefault->init(localeNameBuf.data(), false); in locale_set_default_internal()
400 init(togo.data(), false); in Locale()
549 * A Builder class to build the alias data.
569 // Read the languageAlias data from alias to
582 // Read the scriptAlias data from alias to
593 // Read the territoryAlias data from alias to
604 // Read the variantAlias data from alias to
615 // Read the subdivisionAlias data from alias to
736 * Read the languageAlias data fro
[all...]
/third_party/node/deps/icu-small/source/common/
H A Dlocid.cpp208 Locale *newDefault = (Locale *)uhash_get(gDefaultLocalesHashT, localeNameBuf.data()); in locale_set_default_internal()
215 newDefault->init(localeNameBuf.data(), false); in locale_set_default_internal()
400 init(togo.data(), false); in Locale()
549 * A Builder class to build the alias data.
569 // Read the languageAlias data from alias to
582 // Read the scriptAlias data from alias to
593 // Read the territoryAlias data from alias to
604 // Read the variantAlias data from alias to
615 // Read the subdivisionAlias data from alias to
736 * Read the languageAlias data fro
[all...]
/third_party/skia/third_party/externals/icu/source/common/
H A Dlocid.cpp208 Locale *newDefault = (Locale *)uhash_get(gDefaultLocalesHashT, localeNameBuf.data()); in locale_set_default_internal()
215 newDefault->init(localeNameBuf.data(), FALSE); in locale_set_default_internal()
420 init(togo.data(), FALSE); in Locale()
569 * A Builder class to build the alias data.
589 // Read the languageAlias data from alias to
602 // Read the scriptAlias data from alias to
613 // Read the territoryAlias data from alias to
624 // Read the variantAlias data from alias to
635 // Read the subdivisionAlias data from alias to
757 * Read the languageAlias data fro
[all...]
/third_party/ffmpeg/libavcodec/
H A Dsheervideo.c45 dst_a = (uint16_t *)p->data[3]; in decode_ca4i()
46 dst_y = (uint16_t *)p->data[0]; in decode_ca4i()
47 dst_u = (uint16_t *)p->data[1]; in decode_ca4i()
48 dst_v = (uint16_t *)p->data[2]; in decode_ca4i()
89 dst_a = (uint16_t *)p->data[3]; in decode_ca4p()
90 dst_y = (uint16_t *)p->data[0]; in decode_ca4p()
91 dst_u = (uint16_t *)p->data[1]; in decode_ca4p()
92 dst_v = (uint16_t *)p->data[2]; in decode_ca4p()
177 dst_y = (uint16_t *)p->data[0]; in decode_ybr10i()
178 dst_u = (uint16_t *)p->data[ in decode_ybr10i()
[all...]
/third_party/libsnd/src/
H A Dsndfile.c81 { SFE_BAD_FILE_READ , "File exists but no data could be read." },
92 { SFE_UNIMPLEMENTED , "File contains data in an unimplemented format." },
110 { SFE_INTERLEAVE_MODE , "Attempt to write to file with non-interleaved data." },
130 { SFE_RDWR_BAD_HEADER , "Error : Cannot open file in read/write mode due to string data in header." },
131 { SFE_CMD_HAS_DATA , "Error : Command fails because file already has audio data." },
133 { SFE_STR_NO_SUPPORT , "Error : File type does not support string data." },
135 { SFE_STR_MAX_DATA , "Error : Maximum string data storage reached." },
136 { SFE_STR_MAX_COUNT , "Error : Maximum string data count reached." },
137 { SFE_STR_BAD_TYPE , "Error : Bad string data type." },
154 { SFE_WAV_NO_DATA , "Error in WAV file. No 'data' chun
999 sf_command(SNDFILE *sndfile, int command, void *data, int datasize) sf_command() argument
[all...]

Completed in 24 milliseconds

1...<<131132133134135136137138139140>>...682