Home
last modified time | relevance | path

Searched defs:src (Results 1 – 25 of 159) sorted by relevance

1234567

/device/generic/vulkan-cereal/third-party/angle/src/image_util/
Dimageformats.cpp17 void L8::readColor(gl::ColorF *dst, const L8 *src) in readColor()
26 void L8::writeColor(L8 *dst, const gl::ColorF *src) in writeColor()
36 void R8::readColor(gl::ColorUI *dst, const R8 *src) in readColor()
44 void R8::readColor(gl::ColorF *dst, const R8 *src) in readColor()
52 void R8::writeColor(R8 *dst, const gl::ColorUI *src) in writeColor()
57 void R8::writeColor(R8 *dst, const gl::ColorF *src) in writeColor()
67 void A8::readColor(gl::ColorF *dst, const A8 *src) in readColor()
75 void A8::writeColor(A8 *dst, const gl::ColorF *src) in writeColor()
85 void L8A8::readColor(gl::ColorF *dst, const L8A8 *src) in readColor()
94 void L8A8::writeColor(L8A8 *dst, const gl::ColorF *src) in writeColor()
[all …]
/device/generic/vulkan-cereal/third-party/angle/src/tests/gl_tests/
DTextureUploadFormatTest.cpp308 constexpr uint8_t src[] = {static_cast<uint8_t>(EncodeNormUint<8>(srcVals[0])), in TEST_P() local
334 constexpr uint8_t src[] = {static_cast<uint8_t>(EncodeNormUint<7>(srcVals[0])), in TEST_P() local
348 constexpr uint16_t src[] = {static_cast<uint16_t>((EncodeNormUint<5>(srcVals[0]) << 11) | in TEST_P() local
359 constexpr uint16_t src[] = {static_cast<uint16_t>( in TEST_P() local
370 constexpr uint16_t src[] = {static_cast<uint16_t>( in TEST_P() local
380 constexpr uint32_t src[] = { in TEST_P() local
392 constexpr uint32_t src[] = { in TEST_P() local
402 const uint16_t src[] = {static_cast<uint16_t>(EncodeNormUint<16>(srcVals[0]))}; in TEST_P() local
410 constexpr uint32_t src[] = {EncodeNormUint<32>(srcVals[0])}; in TEST_P() local
420 constexpr uint32_t src[] = {EncodeNormUint<24>(srcVals[0]) << 8}; in TEST_P() local
[all …]
/device/generic/vulkan-cereal/protocols/vulkan/out/katex/
DREADME.md23 #### In-browser rendering
33 #### Server side rendering or rendering to a string
44 #### Rendering options
58 #### Automatic rendering of math on a page
/device/generic/vulkan-cereal/fake-android-guest/androidImpl/
DUnicode.cpp147 int32_t utf32_from_utf8_at(const char *src, size_t src_len, size_t index, size_t *next_index) in utf32_from_utf8_at()
163 ssize_t utf32_to_utf8_length(const char32_t *src, size_t src_len) in utf32_to_utf8_length()
183 void utf32_to_utf8(const char32_t* src, size_t src_len, char* dst, size_t dst_len) in utf32_to_utf8()
230 char16_t *strcpy16(char16_t *dst, const char16_t *src) in strcpy16()
258 char16_t* strstr16(const char16_t* src, const char16_t* target) in strstr16()
289 void utf16_to_utf8(const char16_t* src, size_t src_len, char* dst, size_t dst_len) in utf16_to_utf8()
320 ssize_t utf8_length(const char *src) in utf8_length()
360 ssize_t utf16_to_utf8_length(const char16_t *src, size_t src_len) in utf16_to_utf8_length()
406 size_t utf8_to_utf32_length(const char *src, size_t src_len) in utf8_to_utf32_length()
429 void utf8_to_utf32(const char* src, size_t src_len, char32_t* dst) in utf8_to_utf32()
[all …]
/device/generic/vulkan-cereal/third-party/lz4/
Dlz4hc.c523 int LZ4_compress_HC_extStateHC (void* state, const char* src, char* dst, int srcSize, int maxDstSiz… in LZ4_compress_HC_extStateHC()
534 int LZ4_compress_HC(const char* src, char* dst, int srcSize, int maxDstSize, int compressionLevel) in LZ4_compress_HC()
670 int LZ4_compressHC(const char* src, char* dst, int srcSize) { return LZ4_compress_HC (src, dst, src… in LZ4_compressHC()
671 int LZ4_compressHC_limitedOutput(const char* src, char* dst, int srcSize, int maxDstSize) { return … in LZ4_compressHC_limitedOutput()
672 int LZ4_compressHC2(const char* src, char* dst, int srcSize, int cLevel) { return LZ4_compress_HC (… in LZ4_compressHC2()
673 int LZ4_compressHC2_limitedOutput(const char* src, char* dst, int srcSize, int maxDstSize, int cLev… in LZ4_compressHC2_limitedOutput()
674 int LZ4_compressHC_withStateHC (void* state, const char* src, char* dst, int srcSize) { return LZ4_… in LZ4_compressHC_withStateHC()
675 int LZ4_compressHC_limitedOutput_withStateHC (void* state, const char* src, char* dst, int srcSize,… in LZ4_compressHC_limitedOutput_withStateHC()
676 int LZ4_compressHC2_withStateHC (void* state, const char* src, char* dst, int srcSize, int cLevel) … in LZ4_compressHC2_withStateHC()
677 int LZ4_compressHC2_limitedOutput_withStateHC (void* state, const char* src, char* dst, int srcSize… in LZ4_compressHC2_limitedOutput_withStateHC()
[all …]
Dlz4frame.c95 static U32 LZ4F_readLE32 (const void* src) in LZ4F_readLE32()
114 static U64 LZ4F_readLE64 (const void* src) in LZ4F_readLE64()
501 static size_t LZ4F_compressBlock(void* dst, const void* src, size_t srcSize, compressFunc_t compres… in LZ4F_compressBlock()
516 static int LZ4F_localLZ4_compress_limitedOutput_withState(void* ctx, const char* src, char* dst, in… in LZ4F_localLZ4_compress_limitedOutput_withState()
522 static int LZ4F_localLZ4_compress_limitedOutput_continue(void* ctx, const char* src, char* dst, int… in LZ4F_localLZ4_compress_limitedOutput_continue()
528 static int LZ4F_localLZ4_compressHC_limitedOutput_continue(void* ctx, const char* src, char* dst, i… in LZ4F_localLZ4_compressHC_limitedOutput_continue()
798 static size_t LZ4F_headerSize(const void* src, size_t srcSize) in LZ4F_headerSize()
825 static size_t LZ4F_decodeHeader(LZ4F_dctx* dctxPtr, const void* src, size_t srcSize) in LZ4F_decodeHeader()
/device/generic/vulkan-cereal/protocols/vulkan/katex/
DREADME.md25 ### Starter template
49 ### API
/device/google/contexthub/lib/nanohub/
Daes.c204 void aesEncr(struct AesContext *ctx, const uint32_t *src, uint32_t *dst) in aesEncr()
274 void aesDecr(struct AesContext *ctx, const uint32_t *src, uint32_t *dst) in aesDecr()
358 void aesCbcEncr(struct AesCbcContext *ctx, const uint32_t *src, uint32_t *dst) in aesCbcEncr()
369 void aesCbcDecr(struct AesCbcContext *ctx, const uint32_t *src, uint32_t *dst) in aesCbcDecr()
/device/google/contexthub/firmware/app/chre/common/
Dchre10_app.c54 static void processTripleAxisData(const struct TripleAxisDataEvent *src, uint32_t sensorHandle, uin… in processTripleAxisData()
73 static void processSingleAxisData(const struct SingleAxisDataEvent *src, uint32_t sensorHandle, uin… in processSingleAxisData()
129 static void processEmbeddedData(const void *src, uint32_t sensorHandle, uint8_t sensorType) in processEmbeddedData()
Dchre_app.c54 static void processTripleAxisData(const struct TripleAxisDataEvent *src, uint32_t sensorHandle, uin… in processTripleAxisData()
73 static void processSingleAxisData(const struct SingleAxisDataEvent *src, uint32_t sensorHandle, uin… in processSingleAxisData()
129 static void processEmbeddedData(const void *src, uint32_t sensorHandle, uint8_t sensorType) in processEmbeddedData()
/device/generic/vulkan-cereal/third-party/perfetto/include/perfetto/protozero/
Dscattered_stream_writer.h66 inline void WriteBytesUnsafe(const uint8_t* src, size_t size) { in WriteBytesUnsafe()
73 inline void WriteBytes(const uint8_t* src, size_t size) { in WriteBytes()
/device/google/cuttlefish/host/commands/append_squashfs_overlay/src/
Dmain.rs50 let mut src = File::open(src)?; in merge_fs() localVariable
88 let src = matches.value_of("src").unwrap().as_ref(); in main() localVariable
/device/generic/goldfish-opengl/system/OpenglSystemCommon/
DFormatConversions.cpp92 void rgb565_to_yv12(char* dest, char* src, int width, int height, in rgb565_to_yv12()
132 void rgb888_to_yv12(char* dest, char* src, int width, int height, in rgb888_to_yv12()
200 void rgb888_to_yuv420p(char* dest, char* src, int width, int height, in rgb888_to_yuv420p()
237 void yv12_to_rgb565(char* dest, char* src, int width, int height, in yv12_to_rgb565()
282 void yv12_to_rgb888(char* dest, char* src, int width, int height, in yv12_to_rgb888()
322 void yuv420p_to_rgb888(char* dest, char* src, int width, int height, in yuv420p_to_rgb888()
371 const char *src = raw_data + top*src_line_len + left*bpp; in copy_rgb_buffer_from_unlocked() local
/device/generic/vulkan-cereal/stream-servers/
DRingStream.cpp255 const char* src = mContext.buffer + xfersPtr[i].offset; in type1Read() local
265 const char* src = mContext.buffer + xfersPtr[i].offset; in type1Read() local
300 const char* src = in type2Read() local
/device/generic/goldfish-opengl/system/hwc2/
DGuestComposer.cpp157 int ConvertFromRGB565(const BufferSpec& src, const BufferSpec& dst, in ConvertFromRGB565()
178 int ConvertFromYV12(const BufferSpec& src, const BufferSpec& dst, bool vFlip) { in ConvertFromYV12()
224 int DoConversion(const BufferSpec& src, const BufferSpec& dst, bool v_flip) { in DoConversion()
233 int DoCopy(const BufferSpec& src, const BufferSpec& dst, bool v_flip) { in DoCopy()
257 int DoRotation(const BufferSpec& src, const BufferSpec& dst, in DoRotation()
277 int DoScaling(const BufferSpec& src, const BufferSpec& dst, bool v_flip) { in DoScaling()
299 int DoAttenuation(const BufferSpec& src, const BufferSpec& dst, bool v_flip) { in DoAttenuation()
318 int DoBlending(const BufferSpec& src, const BufferSpec& dst, bool v_flip) { in DoBlending()
/device/generic/goldfish-opengl/system/hwc3/
DGuestFrameComposer.cpp166 int ConvertFromRGB565(const BufferSpec& src, const BufferSpec& dst, in ConvertFromRGB565()
187 int ConvertFromYV12(const BufferSpec& src, const BufferSpec& dst, bool vFlip) { in ConvertFromYV12()
233 int DoConversion(const BufferSpec& src, const BufferSpec& dst, bool v_flip) { in DoConversion()
242 int DoCopy(const BufferSpec& src, const BufferSpec& dst, bool v_flip) { in DoCopy()
266 int DoRotation(const BufferSpec& src, const BufferSpec& dst, in DoRotation()
286 int DoScaling(const BufferSpec& src, const BufferSpec& dst, bool v_flip) { in DoScaling()
308 int DoAttenuation(const BufferSpec& src, const BufferSpec& dst, bool v_flip) { in DoAttenuation()
327 int DoBlending(const BufferSpec& src, const BufferSpec& dst, bool v_flip) { in DoBlending()
/device/generic/goldfish-opengl/shared/OpenglCodecCommon/
DglUtils.h132 template <class T> void shiftIndices(const T *src, T *dst, int count, int offset) in shiftIndices()
157 (const T *src, T *dst, int count, int offset, in shiftIndicesExcept()
/device/generic/vulkan-cereal/protocols/vulkan/scripts/
Dmakemanaliases.py42 src = api.alias[key] + '.html' variable
/device/generic/vulkan-cereal/protocols/vulkan/xml/
Dmakemanaliases.py42 src = api.alias[key] + '.html' variable
/device/google/contexthub/firmware/lib/libc/
Dstrncpy.c42 strncpy(char *dst, const char *src, size_t n) in strncpy()
/device/google/redbull-kernel/sm7250/kernel-headers/linux/
Dmsm_rotator.h35 struct msmfb_img src; member
47 struct msmfb_data src; member
/device/google/sunfish-kernel/sm7150/original-kernel-headers/linux/
Dmsm_rotator.h26 struct msmfb_img src; member
39 struct msmfb_data src; member
/device/google/coral-kernel/sm8150/kernel-headers/linux/
Dmsm_rotator.h35 struct msmfb_img src; member
47 struct msmfb_data src; member
/device/google/redbull-kernel/sm7250/original-kernel-headers/linux/
Dmsm_rotator.h31 struct msmfb_img src; member
44 struct msmfb_data src; member
/device/google/coral-kernel/sm8150/original-kernel-headers/linux/
Dmsm_rotator.h26 struct msmfb_img src; member
39 struct msmfb_data src; member

1234567