Searched refs:primType (Results 1 - 3 of 3) sorted by relevance

/dalvik/vm/native/
H A Djava_lang_VMClassLoader.c158 int primType = args[0]; local
160 pResult->l = dvmFindPrimitiveClass(primType);
/dalvik/vm/
H A DCheckJni.c1132 static int dvmPrimitiveTypeWidth(PrimitiveType primType) argument
1145 assert(primType >= 0 && primType < PRIM_MAX);
1146 return lengths[primType];
1157 PrimitiveType primType = arrObj->obj.clazz->elementClass->primitiveType; local
1158 int len = arrObj->length * dvmPrimitiveTypeWidth(primType);
1177 PrimitiveType primType = arrObj->obj.clazz->elementClass->primitiveType; local
1178 //int len = array->length * dvmPrimitiveTypeWidth(primType);
/dalvik/vm/analysis/
H A DCodeVerify.c329 static RegType primitiveTypeToRegType(PrimitiveType primType) argument
333 PrimitiveType primType; /* verification */ member in struct:__anon61
347 if (primType < 0 || primType > (int) (sizeof(convTab) / sizeof(convTab[0])))
353 assert(convTab[primType].primType == primType);
354 return convTab[primType].regType;

Completed in 103 milliseconds