Home
last modified time | relevance | path

Searched refs:data (Results 3451 - 3475 of 17044) sorted by relevance

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

/third_party/openssl/test/
H A Dpackettest.c221 unsigned char *data = NULL; in test_PACKET_memdup() local
227 || !TEST_true(PACKET_memdup(&pkt, &data, &len)) in test_PACKET_memdup()
229 || !TEST_mem_eq(data, len, PACKET_data(&pkt), len) in test_PACKET_memdup()
231 || !TEST_true(PACKET_memdup(&pkt, &data, &len)) in test_PACKET_memdup()
233 || !TEST_mem_eq(data, len, PACKET_data(&pkt), len)) in test_PACKET_memdup()
237 OPENSSL_free(data); in test_PACKET_memdup()
244 char *data = NULL; in test_PACKET_strndup() local
253 || !TEST_true(PACKET_strndup(&pkt, &data)) in test_PACKET_strndup()
254 || !TEST_size_t_eq(strlen(data), 10) in test_PACKET_strndup()
255 || !TEST_strn_eq(data, buf in test_PACKET_strndup()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/protected_memory/
H A DvktProtectedMemCopyImageToBufferTests.cpp85 ValidationData<T> data, in CopyImageToBufferTestCase()
91 , m_validator (data, format) in CopyImageToBufferTestCase()
317 // Log out test data in iterate()
332 const ValidationDataVec4 data; in createCopyImageToFloatBufferTests() member
385 DE_ASSERT(testData[ndx].data.positions[0].x() < MAX_POSITION); in createCopyImageToFloatBufferTests()
386 DE_ASSERT(testData[ndx].data.positions[1].x() < MAX_POSITION); in createCopyImageToFloatBufferTests()
387 DE_ASSERT(testData[ndx].data.positions[2].x() < MAX_POSITION); in createCopyImageToFloatBufferTests()
388 DE_ASSERT(testData[ndx].data.positions[3].x() < MAX_POSITION); in createCopyImageToFloatBufferTests()
391 copyStaticTests->addChild(new CopyImageToBufferTestCase<tcu::Vec4>(testCtx, name.c_str(), testData[ndx].fillValue, testData[ndx].data, cmdBufferType, vk::VK_FORMAT_R32G32B32A32_SFLOAT, pipelineProtectedAccess[ppa])); in createCopyImageToFloatBufferTests()
410 ValidationDataVec4 data in createCopyImageToFloatBufferTests() local
82 CopyImageToBufferTestCase(tcu::TestContext& testCtx, const std::string& name, vk::VkClearColorValue fillValue, ValidationData<T> data, CmdBufferType cmdBufferType, vk::VkFormat format, bool pipelineProtectedAccess) CopyImageToBufferTestCase() argument
[all...]
/third_party/skia/third_party/externals/angle2/src/compiler/translator/tree_ops/
H A DMonomorphizeUnsupportedFunctions.cpp263 FunctionData &data = (*mFunctionMap)[function]; variable
266 processFunctionCall(node, data.originalDefinition, &data.isOriginalUsed);
269 data.monomorphizedDefinitions.push_back(monomorphized);
417 const FunctionData &data = mFunctionMap.at(function); variable
420 if (data.monomorphizedDefinitions.empty())
422 ASSERT(data.isOriginalUsed);
429 if (data.isOriginalUsed)
433 for (TIntermFunctionDefinition *monomorphizedDefinition : data.monomorphizedDefinitions)
448 const FunctionData &data variable
[all...]
/third_party/skia/third_party/externals/swiftshader/src/Renderer/
H A DQuadRasterizer.cpp50 constants = *Pointer<Pointer<Byte>>(data + OFFSET(DrawData,constants)); in generate()
76 UInt clusterOcclusion = *Pointer<UInt>(data + OFFSET(DrawData,occlusion) + 4 * cluster); in generate()
78 *Pointer<UInt>(data + OFFSET(DrawData,occlusion) + 4 * cluster) = clusterOcclusion; in generate()
86 *Pointer<Long>(data + OFFSET(DrawData,cycles[i]) + 8 * cluster) += cycles[i]; in generate()
103 cBuffer[index] = *Pointer<Pointer<Byte>>(data + OFFSET(DrawData,colorBuffer[index])) + yMin * *Pointer<Int>(data + OFFSET(DrawData,colorPitchB[index]));
109 zBuffer = *Pointer<Pointer<Byte>>(data + OFFSET(DrawData,depthBuffer)) + yMin * *Pointer<Int>(data + OFFSET(DrawData,depthPitchB));
114 sBuffer = *Pointer<Pointer<Byte>>(data + OFFSET(DrawData,stencilBuffer)) + yMin * *Pointer<Int>(data
[all...]
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/tools/conversion/eot/
H A DGlyfEncoder.java21 import com.google.typography.font.sfntly.data.ReadableFontData;
37 * Implementation of compression of CTF glyph data, as per sections 5.6-5.10 and 6 of the spec.
81 throw new RuntimeException("unexpected IOException writing glyph data", e); in writeGlyph()
259 ReadableFontData data = glyph.instructions(); in splitPush()
265 int instr = data.readUByte(ix++); in splitPush()
270 n = data.readUByte(ix++); in splitPush()
287 result.add(data.readUByte(ix)); in splitPush()
289 result.add(data.readShort(ix)); in splitPush()
301 data.slice(i).copyTo(codeStream); in splitPush()
306 private void encodePushSequence(OutputStream os, List<Integer> data) throw argument
[all...]
/third_party/skia/tests/
H A DFlattenDrawableTest.cpp219 sk_sp<SkData> data = SkData::MakeUninitialized(writeBuffer.bytesWritten()); in DEF_TEST() local
220 writeBuffer.writeToMemory(data->writable_data()); in DEF_TEST()
221 SkReadBuffer readBuffer(data->data(), data->size()); in DEF_TEST()
278 sk_sp<SkData> data = SkData::MakeUninitialized(writeBuffer.bytesWritten()); in DEF_TEST() local
279 writeBuffer.writeToMemory(data->writable_data()); in DEF_TEST()
280 SkReadBuffer readBuffer(data->data(), data in DEF_TEST()
290 auto data = SkData::MakeEmpty(); DEF_TEST() local
[all...]
/third_party/skia/third_party/externals/dawn/src/dawn_native/
H A DQueue.cpp78 const void* data, in UploadTextureDataAligningBytesPerRowAndOffset()
115 const uint8_t* srcPointer = static_cast<const uint8_t*>(data); in UploadTextureDataAligningBytesPerRowAndOffset()
255 const void* data, in APIWriteBuffer()
257 GetDevice()->ConsumedError(WriteBuffer(buffer, bufferOffset, data, size)); in APIWriteBuffer()
262 const void* data, in WriteBuffer()
268 return WriteBufferImpl(buffer, bufferOffset, data, size); in WriteBuffer()
273 const void* data, in WriteBufferImpl()
287 memcpy(uploadHandle.mappedBuffer, data, size); in WriteBufferImpl()
296 const void* data, in APIWriteTexture()
301 WriteTextureInternal(destination, data, dataSiz in APIWriteTexture()
76 UploadTextureDataAligningBytesPerRowAndOffset( DeviceBase* device, const void* data, uint32_t alignedBytesPerRow, uint32_t optimallyAlignedBytesPerRow, uint32_t alignedRowsPerImage, const TextureDataLayout& dataLayout, bool hasDepthOrStencil, const TexelBlockInfo& blockInfo, const Extent3D& writeSizePixel) UploadTextureDataAligningBytesPerRowAndOffset() argument
253 APIWriteBuffer(BufferBase* buffer, uint64_t bufferOffset, const void* data, size_t size) APIWriteBuffer() argument
260 WriteBuffer(BufferBase* buffer, uint64_t bufferOffset, const void* data, size_t size) WriteBuffer() argument
271 WriteBufferImpl(BufferBase* buffer, uint64_t bufferOffset, const void* data, size_t size) WriteBufferImpl() argument
295 APIWriteTexture(const ImageCopyTexture* destination, const void* data, size_t dataSize, const TextureDataLayout* dataLayout, const Extent3D* writeSize) APIWriteTexture() argument
304 WriteTextureInternal(const ImageCopyTexture* destination, const void* data, size_t dataSize, const TextureDataLayout& dataLayout, const Extent3D* writeSize) WriteTextureInternal() argument
322 WriteTextureImpl(const ImageCopyTexture& destination, const void* data, const TextureDataLayout& dataLayout, const Extent3D& writeSizePixel) WriteTextureImpl() argument
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/protected_memory/
H A DvktProtectedMemCopyImageToBufferTests.cpp85 ValidationData<T> data, in CopyImageToBufferTestCase()
91 , m_validator (data, format) in CopyImageToBufferTestCase()
317 // Log out test data in iterate()
332 const ValidationDataVec4 data; in createCopyImageToFloatBufferTests() member
384 DE_ASSERT(testData[ndx].data.positions[0].x() < MAX_POSITION); in createCopyImageToFloatBufferTests()
385 DE_ASSERT(testData[ndx].data.positions[1].x() < MAX_POSITION); in createCopyImageToFloatBufferTests()
386 DE_ASSERT(testData[ndx].data.positions[2].x() < MAX_POSITION); in createCopyImageToFloatBufferTests()
387 DE_ASSERT(testData[ndx].data.positions[3].x() < MAX_POSITION); in createCopyImageToFloatBufferTests()
390 copyStaticTests->addChild(new CopyImageToBufferTestCase<tcu::Vec4>(testCtx, name.c_str(), testData[ndx].fillValue, testData[ndx].data, cmdBufferType, vk::VK_FORMAT_R32G32B32A32_SFLOAT, pipelineProtectedAccess[ppa])); in createCopyImageToFloatBufferTests()
409 ValidationDataVec4 data in createCopyImageToFloatBufferTests() local
82 CopyImageToBufferTestCase(tcu::TestContext& testCtx, const std::string& name, vk::VkClearColorValue fillValue, ValidationData<T> data, CmdBufferType cmdBufferType, vk::VkFormat format, bool pipelineProtectedAccess) CopyImageToBufferTestCase() argument
[all...]
/drivers/external_device_manager/test/unittest/bus_extension_usb_test/include/
H A Dusb_impl_mock.h70 BulkTransferRead, int32_t(const UsbDev &dev, const UsbPipe &pipe, int32_t timeout, std::vector<uint8_t> &data));
72 int32_t(const UsbDev &dev, const UsbPipe &pipe, int32_t timeout, const std::vector<uint8_t> &data));
74 ControlTransferRead, int32_t(const UsbDev &dev, const UsbCtrlTransfer &ctrl, std::vector<uint8_t> &data));
76 int32_t(const UsbDev &dev, const UsbCtrlTransfer &ctrl, const std::vector<uint8_t> &data));
78 int32_t(const UsbDev &dev, const UsbPipe &pipe, int32_t timeout, std::vector<uint8_t> &data));
80 int32_t(const UsbDev &dev, const UsbPipe &pipe, int32_t timeout, const std::vector<uint8_t> &data));
82 IsoTransferRead, int32_t(const UsbDev &dev, const UsbPipe &pipe, int32_t timeout, std::vector<uint8_t> &data));
84 int32_t(const UsbDev &dev, const UsbPipe &pipe, int32_t timeout, const std::vector<uint8_t> &data));
/drivers/hdf_core/framework/support/platform/src/watchdog/
H A Dwatchdog_if_u.c204 struct HdfSBuf *data = NULL; in WatchdogSetTimeout() local
213 data = HdfSbufObtainDefaultSize(); in WatchdogSetTimeout()
214 if (data == NULL) { in WatchdogSetTimeout()
215 HDF_LOGE("WatchdogSetTimeout: failed to obtain data!"); in WatchdogSetTimeout()
219 if (!HdfSbufWriteUint32(data, seconds)) { in WatchdogSetTimeout()
221 HdfSbufRecycle(data); in WatchdogSetTimeout()
225 ret = service->dispatcher->Dispatch(&service->object, WATCHDOG_IO_SET_TIMEOUT, data, NULL); in WatchdogSetTimeout()
228 HdfSbufRecycle(data); in WatchdogSetTimeout()
231 HdfSbufRecycle(data); in WatchdogSetTimeout()
/drivers/peripheral/camera/vdi_base/common/adapter/platform/v4l2/src/pipeline_core/nodes/v4l2_source_node/
H A Dv4l2_source_node.cpp143 common_metadata_header_t *data = meta->get(); in GetStreamId() local
144 if (data == nullptr) { in GetStreamId()
145 CAMERA_LOGE("data is nullptr"); in GetStreamId()
150 int rc = FindCameraMetadataItem(data, OHOS_CAMERA_STREAM_ID, &entry); in GetStreamId()
152 streamId = *entry.data.i32; in GetStreamId()
194 common_metadata_header_t *data = metadata->get(); in GetUpdateFps() local
196 int ret = FindCameraMetadataItem(data, OHOS_CONTROL_FPS_RANGES, &entry); in GetUpdateFps()
200 fpsRange.push_back(*(entry.data.i32 + i)); in GetUpdateFps()
202 meta_->addEntry(OHOS_CONTROL_FPS_RANGES, fpsRange.data(), fpsRange.size()); in GetUpdateFps()
/drivers/peripheral/camera/vdi_base/usb_camera/adapter/platform/v4l2/src/pipeline_core/nodes/uvc_node/
H A Duvc_node.cpp145 common_metadata_header_t *data = meta->get(); in GetStreamId() local
146 if (data == nullptr) { in GetStreamId()
152 int rc = FindCameraMetadataItem(data, OHOS_CAMERA_STREAM_ID, &entry); in GetStreamId()
154 streamId = *entry.data.i32; in GetStreamId()
161 common_metadata_header_t *data = metadata->get(); in GetUpdateFps() local
163 int ret = FindCameraMetadataItem(data, OHOS_CONTROL_FPS_RANGES, &entry); in GetUpdateFps()
167 fpsRange.push_back(*(entry.data.i32 + i)); in GetUpdateFps()
169 meta_->addEntry(OHOS_CONTROL_FPS_RANGES, fpsRange.data(), fpsRange.size()); in GetUpdateFps()
/third_party/ffmpeg/libavcodec/
H A Dmmvideo.c119 memset(s->frame->data[0] + y*s->frame->linesize[0] + x, color, run_length); in mm_decode_intra()
121 memset(s->frame->data[0] + (y+1)*s->frame->linesize[0] + x, color, run_length); in mm_decode_intra()
170 s->frame->data[0][y*s->frame->linesize[0] + x] = color; in mm_decode_inter()
172 s->frame->data[0][y*s->frame->linesize[0] + x + 1] = color; in mm_decode_inter()
174 s->frame->data[0][(y+1)*s->frame->linesize[0] + x] = color; in mm_decode_inter()
176 s->frame->data[0][(y+1)*s->frame->linesize[0] + x + 1] = color; in mm_decode_inter()
192 const uint8_t *buf = avpkt->data; in mm_decode_frame()
222 memcpy(s->frame->data[1], s->palette, AVPALETTE_SIZE); in mm_decode_frame()
H A Dyop.c212 memset(frame->data[1], 0, AVPALETTE_SIZE); in yop_decode_frame()
214 s->dstbuf = frame->data[0]; in yop_decode_frame()
215 s->dstptr = frame->data[0]; in yop_decode_frame()
216 s->srcptr = avpkt->data + 4; in yop_decode_frame()
217 s->src_end = avpkt->data + avpkt->size; in yop_decode_frame()
220 is_odd_frame = avpkt->data[0]; in yop_decode_frame()
226 palette = (uint32_t *)frame->data[1]; in yop_decode_frame()
240 if (s->srcptr - avpkt->data >= avpkt->size) { in yop_decode_frame()
H A Dmsrledec.c83 pic->data[0][line * pic->linesize[0] + pixel_ptr] = stream_byte >> 4; in msrle_decode_pal4()
89 pic->data[0][line * pic->linesize[0] + pixel_ptr] = stream_byte & 0x0F; in msrle_decode_pal4()
98 // decode a run of data in msrle_decode_pal4()
109 pic->data[0][line * pic->linesize[0] + pixel_ptr] = stream_byte >> 4; in msrle_decode_pal4()
111 pic->data[0][line * pic->linesize[0] + pixel_ptr] = stream_byte & 0x0F; in msrle_decode_pal4()
138 output = pic->data[0] + (avctx->height - 1) * pic->linesize[0]; in msrle_decode_8_16_24_32()
156 output = pic->data[0] + line * pic->linesize[0]; in msrle_decode_8_16_24_32()
171 output = pic->data[0] + line * pic->linesize[0] + pos * (depth >> 3); in msrle_decode_8_16_24_32()
172 output_end = pic->data[0] + line * pic->linesize[0] + FFABS(pic->linesize[0]); in msrle_decode_8_16_24_32()
175 // Copy data in msrle_decode_8_16_24_32()
[all...]
/third_party/elfio/elfio/
H A Delfio_segment.hpp105 return data.get();
209 data = nullptr;
212 data.reset( new ( std::nothrow ) char[(size_t)size + 1] );
214 if ( nullptr != data.get() && pstream->read( data.get(), size ) ) {
215 data.get()[size] = 0;
218 data = nullptr;
248 mutable std::unique_ptr<char[]> data; member in ELFIO::segment_impl
/third_party/ffmpeg/libavutil/
H A Daudio_fifo.c119 int av_audio_fifo_write(AVAudioFifo *af, void **data, int nb_samples) in av_audio_fifo_write() argument
136 ret = av_fifo_write(af->buf[i], data[i], size); in av_audio_fifo_write()
145 int av_audio_fifo_peek(AVAudioFifo *af, void **data, int nb_samples) in av_audio_fifo_peek() argument
147 return av_audio_fifo_peek_at(af, data, nb_samples, 0); in av_audio_fifo_peek()
150 int av_audio_fifo_peek_at(AVAudioFifo *af, void **data, int nb_samples, int offset) in av_audio_fifo_peek_at() argument
167 if ((ret = av_fifo_peek(af->buf[i], data[i], size, offset)) < 0) in av_audio_fifo_peek_at()
174 int av_audio_fifo_read(AVAudioFifo *af, void **data, int nb_samples) in av_audio_fifo_read() argument
186 if (av_fifo_read(af->buf[i], data[i], size) < 0) in av_audio_fifo_read()
/third_party/ffmpeg/libavformat/
H A Dlatmenc.c177 if(pkt->size > 2 && pkt->data[0] == 0x56 && (pkt->data[1] >> 4) == 0xe && in latm_write_packet()
178 (AV_RB16(pkt->data + 1) & 0x1FFF) + 3 == pkt->size) in latm_write_packet()
215 if (pkt->size && (pkt->data[0] & 0xe1) == 0x81) { in latm_write_packet()
224 put_bits(&bs, 8, pkt->data[0] & 0xfe); in latm_write_packet()
225 copy_bits(&bs, pkt->data + 1, 8*pkt->size - 8); in latm_write_packet()
227 copy_bits(&bs, pkt->data, 8*pkt->size); in latm_write_packet()
255 if (pkt->size > 2 && (AV_RB16(pkt->data) & 0xfff0) == 0xfff0) in latm_check_bitstream()
/third_party/ffmpeg/libavfilter/
H A Dvf_untile.c132 out->data[0] += y * out->linesize[0]; in activate()
133 out->data[0] += x * s->max_step[0]; in activate()
136 if (out->data[i]) { in activate()
137 out->data[i] += (y >> s->desc->log2_chroma_h) * out->linesize[i]; in activate()
138 out->data[i] += (x >> s->desc->log2_chroma_w) * s->max_step[i]; in activate()
142 if (out->data[3]) { in activate()
143 out->data[3] += y * out->linesize[3]; in activate()
144 out->data[3] += x * s->max_step[3]; in activate()
/third_party/curl/lib/vauth/
H A Dntlm_sspi.c77 * data [in] - The session handle.
82 * ntlm [in/out] - The NTLM data struct being used and modified.
87 CURLcode Curl_auth_create_ntlm_type1_message(struct Curl_easy *data, in Curl_auth_create_ntlm_type1_message() argument
109 failf(data, "SSPI: couldn't get auth info"); in Curl_auth_create_ntlm_type1_message()
196 * data [in] - The session handle.
198 * ntlm [in/out] - The NTLM data struct being used and modified.
202 CURLcode Curl_auth_decode_ntlm_type2_message(struct Curl_easy *data, in Curl_auth_decode_ntlm_type2_message() argument
207 (void) data; in Curl_auth_decode_ntlm_type2_message()
212 infof(data, "NTLM handshake failure (empty type-2 message)"); in Curl_auth_decode_ntlm_type2_message()
235 * data [i
243 Curl_auth_create_ntlm_type3_message(struct Curl_easy *data, const char *userp, const char *passwdp, struct ntlmdata *ntlm, struct bufref *out) Curl_auth_create_ntlm_type3_message() argument
[all...]
/third_party/backends/sanei/
H A Dsanei_jpeg.c27 * For 12-bit JPEG data, we either downscale the values to 8 bits
32 * (When the core library supports data precision reduction, a cleaner
76 * Write some pixel data.
85 JDIMENSION rows_supplied, char *data) in sanei_jpeg_put_pixel_rows()
92 memcpy (data, dest->iobuffer, dest->buffer_width); in sanei_jpeg_put_pixel_rows()
97 * This code is used when we have to copy the data and apply a pixel
103 JDIMENSION rows_supplied, char *data) in sanei_jpeg_copy_pixel_rows()
120 memcpy (data, dest->iobuffer, dest->buffer_width); in sanei_jpeg_copy_pixel_rows()
125 * Write some pixel data when color quantization is in effect.
126 * We have to demap the color index values to straight data
84 sanei_jpeg_put_pixel_rows(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo, JDIMENSION rows_supplied, char *data) sanei_jpeg_put_pixel_rows() argument
102 sanei_jpeg_copy_pixel_rows(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo, JDIMENSION rows_supplied, char *data) sanei_jpeg_copy_pixel_rows() argument
130 sanei_jpeg_put_demapped_rgb(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo, JDIMENSION rows_supplied, char *data) sanei_jpeg_put_demapped_rgb() argument
159 sanei_jpeg_put_demapped_gray(j_decompress_ptr cinfo, djpeg_dest_ptr dinfo, JDIMENSION rows_supplied, char *data) sanei_jpeg_put_demapped_gray() argument
[all...]
/third_party/NuttX/drivers/bch/
H A Dbchdev_driver.c90 bch = (struct bchlib_s *)((struct drv_data *)vnode->data)->priv; in bch_open()
121 bch = (struct bchlib_s *)((struct drv_data *)vnode->data)->priv; in bch_close()
181 bch = (struct bchlib_s *)((struct drv_data *)vnode->data)->priv; in bch_seek()
210 * of the existing data in the file. If data is later written at this point, in bch_seek()
211 * subsequent reads of data in the gap shall return bytes with the value 0 in bch_seek()
212 * until data is actually written into the gap." in bch_seek()
244 bch = (struct bchlib_s *)((struct drv_data *)vnode->data)->priv; in bch_read()
267 bch = (struct bchlib_s *)((struct drv_data *)vnode->data)->priv; in bch_write()
299 bch = (struct bchlib_s *)((struct drv_data *)vnode->data) in bch_ioctl()
[all...]
/third_party/mesa3d/src/compiler/nir/
H A Dnir_lower_scratch.c49 var->data.location); in lower_load_store()
134 if (var->data.mode == 0) in nir_lower_vars_to_scratch()
178 var->data.mode = 0; in nir_lower_vars_to_scratch()
182 var->data.location = INT_MAX; in nir_lower_vars_to_scratch()
206 if (!var || var->data.mode) in nir_lower_vars_to_scratch()
209 if (var->data.location == INT_MAX) { in nir_lower_vars_to_scratch()
213 var->data.location = ALIGN_POT(shader->scratch_size, var_align); in nir_lower_vars_to_scratch()
214 shader->scratch_size = var->data.location + var_size; in nir_lower_vars_to_scratch()
/third_party/mesa3d/src/asahi/compiler/
H A Dcmdline.c51 if (var->data.location > new_var->data.location) { in insert_sorted()
75 if (var->data.location >= VARYING_SLOT_VAR0) { in fixup_varying_slots()
76 var->data.location += 9; in fixup_varying_slots()
77 } else if ((var->data.location >= VARYING_SLOT_TEX0) && in fixup_varying_slots()
78 (var->data.location <= VARYING_SLOT_TEX7)) { in fixup_varying_slots()
79 var->data.location += VARYING_SLOT_VAR0 - VARYING_SLOT_TEX0; in fixup_varying_slots()
178 fwrite(binary.data, 1, binary.size, fp); in compile_shader()
/third_party/node/tools/icu/
H A Diculslocs.cc24 Great, you've now removed the (main) Japanese data. But something's
61 const char* NAME = U_ICUDATA_NAME; // assume ICU data
105 " no data.\n", in usage()
133 printf("packageName: %s\n", packageName.data()); in calculatePackageName()
149 printf("Trying to open %s:%s\n", packageName.data(), loc); in localeExists()
152 ures_openDirect(packageName.data(), loc, &status)); in localeExists()
157 printf("%s:%s existed!\n", packageName.data(), loc); in localeExists()
164 packageName.data(), in localeExists()
175 packageName.data(), in localeExists()
268 ures_openDirect(packageName.data(), local in list()
[all...]

Completed in 18 milliseconds

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