/third_party/elfio/elfio/ |
H A D | elfio_symbols.hpp | 301 Elf_Word nbucket = *(const Elf_Word*)hash_section->get_data(); in hash_lookup() 304 *(const Elf_Word*)( hash_section->get_data() + sizeof( Elf_Word ) ); in hash_lookup() 308 *(const Elf_Word*)( hash_section->get_data() + in hash_lookup() 314 y = *(const Elf_Word*)( hash_section->get_data() + in hash_lookup() 340 uint32_t nbuckets = *( (uint32_t*)hash_section->get_data() + 0 ); in gnu_hash_lookup() 341 uint32_t symoffset = *( (uint32_t*)hash_section->get_data() + 1 ); in gnu_hash_lookup() 342 uint32_t bloom_size = *( (uint32_t*)hash_section->get_data() + 2 ); in gnu_hash_lookup() 343 uint32_t bloom_shift = *( (uint32_t*)hash_section->get_data() + 3 ); in gnu_hash_lookup() 350 (T*)( hash_section->get_data() + 4 * sizeof( uint32_t ) ); in gnu_hash_lookup() 364 (uint32_t*)( hash_section->get_data() in gnu_hash_lookup() [all...] |
H A D | elfio_versym.hpp | 55 value = ( (Elf_Half*)versym_section->get_data() )[no]; in get_entry() 66 ( (Elf_Half*)versym_section->get_data() )[no] = value; in modify_entry() 148 Elfxx_Verneed* verneed = (Elfxx_Verneed*)versym_r_section->get_data(); in get_entry()
|
H A D | elfio_section.hpp | 53 virtual const char* get_data() const noexcept = 0; 125 const char* get_data() const noexcept override 334 stream.write( get_data(), get_size() );
|
H A D | elfio_note.hpp | 69 const char* pData = notes->get_data() + note_start_positions[index]; in get_note() 135 const char* data = notes->get_data(); in process_section()
|
H A D | elfio_relocation.hpp | 331 relocation_section->get_data() + in generic_get_entry_rel() 351 relocation_section->get_data() + in generic_get_entry_rela() 371 relocation_section->get_data() + in generic_set_entry_rel() 396 relocation_section->get_data() + in generic_set_entry_rela()
|
H A D | elfio_dynamic.hpp | 145 if ( dynamic_section->get_data() == nullptr || in generic_get_entry_dyn() 155 dynamic_section->get_data() + in generic_get_entry_dyn()
|
H A D | elfio_segment.hpp | 50 virtual const char* get_data() const noexcept = 0; 100 const char* get_data() const noexcept override
|
H A D | elfio_array.hpp | 57 const T temp = *reinterpret_cast<const T*>( array_section->get_data() + in get_entry()
|
H A D | elfio_strings.hpp | 46 const char* data = string_section->get_data(); in get_string()
|
H A D | elfio_modinfo.hpp | 94 const char* pdata = modinfo_section->get_data(); in process_section()
|
/third_party/python/Lib/test/ |
H A D | test_pkgutil.py | 53 res1 = pkgutil.get_data(pkg, 'res.txt') 55 res2 = pkgutil.get_data(pkg, 'sub/res.txt') 80 res1 = pkgutil.get_data(pkg, 'res.txt') 82 res2 = pkgutil.get_data(pkg, 'sub/res.txt') 116 res = pkgutil.get_data(pkg, 'res.txt') 332 def get_data(self, path): member in PkgutilPEP302Tests.MyTestLoader 351 self.assertEqual(pkgutil.get_data('foo', 'dummy'), "Hello, world!") 355 # Ensure that get_data works without reloading - the "loads" module 360 self.assertEqual(pkgutil.get_data('foo', 'dummy'), "Hello, world!")
|
/third_party/ffmpeg/libavutil/ |
H A D | hwcontext_vdpau.c | 87 VdpVideoSurfaceGetBitsYCbCr *get_data; member 97 VdpVideoSurfaceGetBitsYCbCr *get_data; member 167 GET_CALLBACK(VDP_FUNC_ID_VIDEO_SURFACE_GET_BITS_Y_CB_CR, priv->get_data); in vdpau_device_init() 285 priv->get_data = device_priv->get_data; in vdpau_frames_init() 378 err = priv->get_data(surf, vdpau_format, data, linesize); in vdpau_transfer_data_from()
|
/third_party/mesa3d/src/microsoft/clc/ |
H A D | compute_test.h | 218 virtual const void *get_data() const = 0; 219 virtual void *get_data() = 0; 230 const void *get_data() const override { return NULL; } 231 void *get_data() override { return NULL; } 269 const void *get_data() const override { return this->data(); } 270 void *get_data() override { return this->data(); }
|
H A D | compute_test.cpp | 559 if (arg->get_data()) in run_shader_with_raw_args() 573 memcpy(slot, arg->get_data(), size); in run_shader_with_raw_args() 588 arg->get_data(), arg->get_num_elems(), in run_shader_with_raw_args() 641 get_buffer_data(argres[i], args[i]->get_data(), in run_shader_with_raw_args()
|
/third_party/backends/testsuite/backend/genesys/ |
H A D | tests_image_pipeline.cpp | 51 ASSERT_TRUE(buffer.get_data(1000, dummy.data())); in test_image_buffer_exact_reads() 52 ASSERT_TRUE(buffer.get_data(1000, dummy.data())); in test_image_buffer_exact_reads() 53 ASSERT_TRUE(buffer.get_data(500, dummy.data())); in test_image_buffer_exact_reads() 78 ASSERT_TRUE(buffer.get_data(600, dummy.data())); in test_image_buffer_smaller_reads() 79 ASSERT_TRUE(buffer.get_data(600, dummy.data())); in test_image_buffer_smaller_reads() 80 ASSERT_TRUE(buffer.get_data(600, dummy.data())); in test_image_buffer_smaller_reads() 81 ASSERT_TRUE(buffer.get_data(700, dummy.data())); in test_image_buffer_smaller_reads() 106 ASSERT_TRUE(buffer.get_data(2500, dummy.data())); in test_image_buffer_larger_reads() 131 ASSERT_TRUE(buffer.get_data(3000, dummy.data())); in test_image_buffer_uncapped_remaining_bytes() 132 ASSERT_FALSE(buffer.get_data(300 in test_image_buffer_uncapped_remaining_bytes() [all...] |
/third_party/skia/third_party/externals/libpng/contrib/pngminus/ |
H A D | pnm2png.c | 37 png_uint_32 get_data (FILE *pnm_file, int depth); 384 *pix_ptr++ = get_data (pnm_file, 8); in pnm2png() 396 *pix_ptr++ = get_data (pnm_file, bit_depth); in pnm2png() 419 *pix_ptr++ = get_data (alpha_file, alpha_depth); in pnm2png() 557 * get_data - takes first byte and converts into next pixel value, 562 png_uint_32 get_data (FILE *pnm_file, int depth) in get_data() function
|
/third_party/python/Lib/ |
H A D | plistlib.py | 225 def get_data(self): member in _PlistParser 247 self.current_key = self.get_data() 264 raw = self.get_data() 271 self.add_object(float(self.get_data())) 274 self.add_object(self.get_data()) 277 self.add_object(_decode_base64(self.get_data())) 280 self.add_object(_date_from_string(self.get_data()))
|
H A D | pkgutil.py | 16 'walk_packages', 'iter_modules', 'get_data', 295 def get_data(self, pathname): member in ImpLoader 600 def get_data(package, resource): function 603 This is a wrapper round the PEP 302 loader get_data API. The package 619 which does not support get_data(), then None is returned. 626 if loader is None or not hasattr(loader, 'get_data'): 634 # Modify the resource name to be compatible with the loader.get_data 640 return loader.get_data(resource_name)
|
H A D | imp.py | 143 def get_data(self, path): member in _HackedGetData 146 # The contract of get_data() requires us to return bytes. Reopen the 158 return super().get_data(path)
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-machinery.hh | 146 Data * get_data () const in get_data() function 149 bool is_inert () const { return !get_data (); } in is_inert() 152 Stored * call_create () const { return Subclass::create (get_data ()); } in call_create()
|
/third_party/python/Lib/test/test_importlib/ |
H A D | test_abc.py | 240 def get_data(self, path): member in ResourceLoader 241 return super().get_data(path) 250 self.ins.get_data('/some/path') 711 def get_data(self, path): member in SourceOnlyLoader 746 def get_data(self, path): member in SourceLoader 748 return super().get_data(path) 816 # If an OSError is raised by get_data then raise ImportError. 821 self.loader.get_data = raise_OSError 922 self.loader.get_data(bytecode_path)
|
/third_party/backends/backend/genesys/ |
H A D | image_buffer.h | 51 bool get_data(std::size_t size, std::uint8_t* out_data);
|
H A D | image_buffer.cpp | 36 bool ImageBuffer::get_data(std::size_t size, std::uint8_t* out_data) in get_data() function in genesys::ImageBuffer
|
/third_party/elfio/examples/anonymizer/ |
H A D | anonymizer.cpp | 70 auto str = std::string( s->get_data() + index ); in process_string_table()
|
/third_party/python/Lib/importlib/ |
H A D | _bootstrap_external.py | 993 source_bytes = self.get_data(path) 995 raise ImportError('source not available through get_data()', 1032 data = self.get_data(bytecode_path) 1049 source_bytes = self.get_data(source_path) 1073 source_bytes = self.get_data(source_path) 1127 def get_data(self, path): member in FileLoader 1193 data = self.get_data(path)
|