Home
last modified time | relevance | path

Searched refs:temp_data (Results 1 – 10 of 10) sorted by relevance

/third_party/elfutils/libelf/
Delf_getarsym.c104 void *temp_data = NULL; in elf_getarsym() local
206 temp_data = malloc (sz); in elf_getarsym()
207 if (unlikely (temp_data == NULL)) in elf_getarsym()
212 file_data = temp_data; in elf_getarsym()
248 temp_data = malloc (sz); in elf_getarsym()
249 if (unlikely (temp_data == NULL)) in elf_getarsym()
254 file_data = memcpy (temp_data, elf->map_address + off, sz); in elf_getarsym()
318 free (temp_data); in elf_getarsym()
/third_party/nghttp2/doc/_exts/rubydomain/
Drubydomain.py112 'module', self.env.temp_data.get('rb:module'))
113 classname = self.env.temp_data.get('rb:class')
155 'module', self.env.temp_data.get('rb:module'))
206 'module', self.env.temp_data.get('rb:module'))
243 self.env.temp_data['rb:class'] = None
324 self.env.temp_data['rb:class'] = self.names[0][0]
375 if lastname and not self.env.temp_data.get('rb:class'):
376 self.env.temp_data['rb:class'] = lastname.strip('.')
400 env.temp_data['rb:module'] = modname
448 env.temp_data['rb:module'] = None
[all …]
/third_party/skia/third_party/externals/imgui/
Dimgui_tables.cpp346 … ImGuiTableTempData* temp_data = table->TempData = &g.TablesTempDataStack[g.CurrentTableStackIdx]; in BeginTableEx() local
347 temp_data->TableIndex = table_idx; in BeginTableEx()
364 temp_data->UserOuterSize = outer_size; in BeginTableEx()
413 temp_data->HostBackupWorkRect = inner_window->WorkRect; in BeginTableEx()
414 temp_data->HostBackupParentWorkRect = inner_window->ParentWorkRect; in BeginTableEx()
415 temp_data->HostBackupColumnsOffset = outer_window->DC.ColumnsOffset; in BeginTableEx()
416 temp_data->HostBackupPrevLineSize = inner_window->DC.PrevLineSize; in BeginTableEx()
417 temp_data->HostBackupCurrLineSize = inner_window->DC.CurrLineSize; in BeginTableEx()
418 temp_data->HostBackupCursorMaxPos = inner_window->DC.CursorMaxPos; in BeginTableEx()
419 temp_data->HostBackupItemWidth = outer_window->DC.ItemWidth; in BeginTableEx()
[all …]
/third_party/ffmpeg/libavfilter/
Dvf_vmafmotion.c192 s->vmafdsp.convolution_y(s->filter, 5, ref->data[0], s->temp_data, in ff_vmafmotion_process()
194 s->vmafdsp.convolution_x(s->filter, 5, s->temp_data, s->blur_data[0], in ff_vmafmotion_process()
251 !(s->temp_data = av_malloc(data_sz))) { in ff_vmafmotion_init()
295 av_free(s->temp_data); in ff_vmafmotion_uninit()
Dvmaf_motion.h48 uint16_t *temp_data; member
Dvf_libvmaf.c94 float *temp_data, int stride, void *ctx) \
160 int (*read_frame)(float *ref_data, float *main_data, float *temp_data, in compute_vmaf_score()
/third_party/vk-gl-cts/external/openglcts/modules/gl/
Dgl4cBufferStorageTests.cpp2194 GLubyte temp_data[data_size]; in iterate() local
2201 temp_data[i] = 0; in iterate()
2227 Buffer::GetSubData(gl, GL_COPY_WRITE_BUFFER, 0 /* offset */, data_size, temp_data); in iterate()
2229 if (0 != memcmp(temp_data, write_data, data_size)) in iterate()
2244 Buffer::GetSubData(gl, GL_COPY_WRITE_BUFFER, 0 /* offset */, data_size, temp_data); in iterate()
2246 if (0 != memcmp(temp_data, read_data, data_size)) in iterate()
2265 GLubyte temp_data[data_size]; in iterate() local
2271 temp_data[i] = 0; in iterate()
2285 Buffer::GetSubData(gl, GL_COPY_WRITE_BUFFER, 0 /* offset */, data_size, temp_data); in iterate()
2287 if (0 != memcmp(temp_data, update_data, data_size)) in iterate()
/third_party/mesa3d/src/mesa/state_tracker/
Dst_texture.h47 GLubyte *temp_data; /**< Temporary compressed texture storage. */ member
Dst_cb_texture.c516 *mapOut = itransfer->temp_data = in st_MapTextureImage()
563 itransfer->temp_data, in st_UnmapTextureImage()
571 itransfer->temp_data, in st_UnmapTextureImage()
579 itransfer->temp_data, in st_UnmapTextureImage()
602 itransfer->temp_data, in st_UnmapTextureImage()
610 itransfer->temp_data, in st_UnmapTextureImage()
617 itransfer->temp_data, in st_UnmapTextureImage()
627 itransfer->temp_data = NULL; in st_UnmapTextureImage()
/third_party/mindspore/patches/
D0014-train-0002.patch600 + auto temp_data = allocator_->Malloc(kNumberTypeFloat16, output_tensor_->Size(), kWorkspace);
601 + MS_CHECK_TRUE_MSG(temp_data != nullptr, RET_NULL_PTR, "malloc running buffer failed.");
602 + temp = allocator_->GetRuntimeAddr(temp_data);