Home | History | Annotate | Download | only in jit

Lines Matching refs:number_of_roots

664 static uint32_t ComputeRootTableSize(uint32_t number_of_roots) {
665 return sizeof(uint32_t) + number_of_roots * sizeof(GcRoot<mirror::Object>);
711 static uint8_t* GetRootTable(const void* code_ptr, uint32_t* number_of_roots = nullptr) {
715 if (number_of_roots != nullptr) {
716 *number_of_roots = roots;
757 uint32_t number_of_roots = 0;
758 uint8_t* roots_data = GetRootTable(entry.first, &number_of_roots);
760 for (uint32_t i = 0; i < number_of_roots; ++i) {
1357 size_t number_of_roots,
1361 size_t table_size = ComputeRootTableSize(number_of_roots);
1392 FillRootTableLength(*roots_data, number_of_roots);