Searched refs:length (Results 101 - 116 of 116) sorted by relevance

12345

/art/compiler/dex/
H A Dmir_graph.cc138 * Parse an instruction, return the length of the instruction
1337 int length = str.length() + 1; local
1338 ret = static_cast<char*>(arena_->Alloc(length, kArenaAllocDFInfo));
1339 strncpy(ret, str.c_str(), length);
/art/runtime/
H A Doat_file.cc400 string_cache_.emplace_back(key.data(), key.length());
H A Dinstrumentation.cc1069 uint32_t length; local
1070 char return_shorty = method->GetShorty(&length)[0];
H A Dclass_linker.cc1926 Thread* self, size_t length) {
1928 self, GetClassRoot(kJavaLangStackTraceElementArrayClass), length);
5448 uint32_t* length) {
5453 return dex_file.GetMethodShorty(method_id, length);
1925 AllocStackTraceElementArray( Thread* self, size_t length) argument
5447 MethodShorty(uint32_t method_idx, mirror::ArtMethod* referrer, uint32_t* length) argument
/art/compiler/llvm/
H A Dgbc_expander.cc755 // Load array length
921 if (callee_method_name == "int java.lang.String.length()") {
2336 // Get the array length and store it to the register
2343 llvm::Value* length = call_inst.getArgOperand(1); local
2345 return EmitAllocNewArray(dex_pc, length, type_idx, false);
2351 uint32_t length = call_inst.getNumArgOperands() - 3; local
2354 EmitAllocNewArray(dex_pc, irb_.getInt32(length), type_idx, true);
2356 if (length > 0) {
2393 for (uint32_t i = 0; i < length; ++i) {
/art/compiler/utils/x86/
H A Dassembler_x86.cc1327 const int length = operand.length_; local
1328 CHECK_GT(length, 0);
1333 for (int i = 1; i < length; i++) {
/art/compiler/utils/x86_64/
H A Dassembler_x86_64.cc1523 const int length = operand.length_; local
1524 CHECK_GT(length, 0);
1529 for (int i = 1; i < length; i++) {
/art/oatdump/
H A Doatdump.cc296 // We don't know the length of the code for each method, but we need to know where to stop
298 // region, so if we keep a sorted sequence of the start of each region, we can infer the length
1245 os << StringPrintf("%p: %s length:%d\n", obj, PrettyDescriptor(obj_class).c_str(),
1268 int32_t length = obj_array->GetLength(); local
1269 for (int32_t i = 0; i < length; i++) {
1272 for (int32_t j = i + 1; j < length; j++) {
/art/compiler/dex/quick/
H A Dmir_to_lir.h831 void GenArrayBoundsCheck(RegStorage index, RegStorage length);
832 void GenArrayBoundsCheck(int32_t index, RegStorage length);
/art/compiler/optimizing/
H A Dcode_generator_x86_64.cc1296 CpuRegister length = locations->InAt(1).AsX86_64().AsCpuRegister(); local
1298 __ cmpl(index, length);
H A Dcode_generator_arm.cc1469 Register length = locations->InAt(1).AsArm().AsCoreRegister(); local
1471 __ cmp(index, ShifterOperand(length));
H A Dcode_generator_x86.cc1464 Register length = locations->InAt(1).AsX86().AsCpuRegister(); local
1466 __ cmpl(index, length);
/art/runtime/interpreter/
H A Dinterpreter_goto_table_impl.cc555 int32_t length = shadow_frame.GetVReg(inst->VRegB_22c(inst_data)); local
557 inst->VRegC_22c(), shadow_frame.GetMethod(), length, self,
598 "failed FILL_ARRAY_DATA; length=%d, index=%d",
H A Dinterpreter_switch_impl.cc469 int32_t length = shadow_frame.GetVReg(inst->VRegB_22c(inst_data)); local
471 inst->VRegC_22c(), shadow_frame.GetMethod(), length, self,
513 "failed FILL_ARRAY_DATA; length=%d, index=%d",
/art/compiler/jni/
H A Djni_compiler_test.cc868 void my_arraycopy(JNIEnv* env, jclass klass, jobject src, jint src_pos, jobject dst, jint dst_pos, jint length) { argument
874 EXPECT_EQ(9876, length);
/art/test/083-compiler-regressions/src/
H A DMain.java944 int len = nn.length;
945 System.out.println(nn.length);
946 System.out.println(nn.length % 3);
949 System.out.println((nn.length % 3) != 1);
9787 for (int i = 0; i != results.length; i += 2) {

Completed in 380 milliseconds

12345