Home
last modified time | relevance | path

Searched refs:string_offset (Results 1 – 7 of 7) sorted by relevance

/aosp12/hardware/google/camera/common/hal/utils/
H A Dhal_camera_metadata.cc497 uint32_t string_offset; in PrintData() local
506 string_offset = 0; in PrintData()
507 string_offset += in PrintData()
508 snprintf(&string[string_offset], (sizeof(string) - string_offset), in PrintData()
515 snprintf(&string[string_offset], (sizeof(string) - string_offset), in PrintData()
521 snprintf(&string[string_offset], (sizeof(string) - string_offset), in PrintData()
527 snprintf(&string[string_offset], (sizeof(string) - string_offset), in PrintData()
533 &string[string_offset], (sizeof(string) - string_offset), in PrintData()
539 &string[string_offset], (sizeof(string) - string_offset), in PrintData()
547 snprintf(&string[string_offset], (sizeof(string) - string_offset), in PrintData()
[all …]
/aosp12/art/dex2oat/linker/arm64/
H A Drelative_patcher_arm64_test.cc479 uint32_t string_offset) { in TestAdrpInsn2Add() argument
485 PrepareNopsAdrpInsn2Add(num_nops, insn2, string_offset); in TestAdrpInsn2Add()
502 uint32_t string_offset) { in TestAdrpLdrPcRelAdd() argument
514 uint32_t string_offset) { in TestAdrpLdrSpRelAdd() argument
813 TestNopsAdrpAdd(/*num_nops=*/ 0u, string_offset); in TEST_F()
899 [&](uint32_t adrp_offset, uint32_t string_offset) { in TEST_F() argument
902 TestAdrpLdurAdd(adrp_offset, has_thunk, string_offset); in TEST_F()
909 [&](uint32_t adrp_offset, uint32_t string_offset) { in TEST_F() argument
920 [&](uint32_t adrp_offset, uint32_t string_offset) { in TEST_F() argument
931 [&](uint32_t adrp_offset, uint32_t string_offset) { in TEST_F() argument
[all …]
/aosp12/system/core/property_service/libpropertyinfoparser/
H A Dproperty_info_parser.cpp54 auto string_offset = uint32_array(contexts_array_offset())[array_offset]; in FindContextIndex() local
55 return strcmp(c_string(string_offset), context); in FindContextIndex()
63 auto string_offset = uint32_array(types_array_offset())[array_offset]; in FindTypeIndex() local
64 return strcmp(c_string(string_offset), type); in FindTypeIndex()
/aosp12/system/core/property_service/libpropertyinfoserializer/
H A Dtrie_serializer.cpp37 uint32_t string_offset = arena_->AllocateAndWriteString(*it); in SerializeStrings() local
38 arena_->uint32_array(offset_array_offset)[i] = string_offset; in SerializeStrings()
/aosp12/art/tools/dexanalyze/
H A Ddexanalyze_strings.cc82 const size_t string_offset = chars_.size(); in AddString() local
88 string_offsets_.push_back(string_offset); in AddString()
154 const size_t string_offset = chars_.size(); in AddString() local
158 string_offsets_.push_back(string_offset); in AddString()
/aosp12/art/runtime/verifier/
H A Dverifier_deps.cc499 uint32_t string_offset = reinterpret_cast<const uint32_t*>(offsets)[i + 1]; in DecodeStringVector() local
500 const char* string_start = reinterpret_cast<const char*>(start + string_offset); in DecodeStringVector()
502 memchr(string_start, 0, end - start - string_offset)); in DecodeStringVector()
/aosp12/art/dex2oat/linker/arm/
H A Drelative_patcher_thumb2_test.cc276 void TestStringReference(uint32_t string_offset);
366 void Thumb2RelativePatcherTest::TestStringReference(uint32_t string_offset) { in TestStringReference() argument
368 string_index_to_offset_map_.Put(kStringIndex, string_offset); in TestStringReference()
373 CheckPcRelativePatch(ArrayRef<const LinkerPatch>(patches), string_offset); in TestStringReference()