Searched refs:targetCount (Results 1 – 8 of 8) sorted by relevance
82 int targetCount = NumberUtils.decodeUnsignedShort(buffer, bufferIndex + 2); in SparseSwitchDataPseudoInstruction() local83 keys = new int[targetCount]; in SparseSwitchDataPseudoInstruction()84 targets = new int[targetCount]; in SparseSwitchDataPseudoInstruction()86 for (int i=0; i<targetCount; i++) { in SparseSwitchDataPseudoInstruction()88 targets[i] = NumberUtils.decodeInt(buffer, bufferIndex + 4 + targetCount*4 + i*4); in SparseSwitchDataPseudoInstruction()148 final int targetCount = getTargetCount(); in iterateKeysAndTargets()154 return i<targetCount; in iterateKeysAndTargets()
74 int targetCount = NumberUtils.decodeUnsignedShort(buffer, bufferIndex + 2); in PackedSwitchDataPseudoInstruction() local76 this.targets = new int[targetCount]; in PackedSwitchDataPseudoInstruction()78 for (int i = 0; i<targetCount; i++) { in PackedSwitchDataPseudoInstruction()128 final int targetCount = getTargetCount(); in iterateKeysAndTargets()135 return i<targetCount; in iterateKeysAndTargets()
32 int targetCount = targets.count(); in draw() local40 for (int tIndex = 0; tIndex < targetCount; tIndex++) { in draw()
346 int32_t targetCount = Transliterator::_countAvailableTargets(source); in registerIDs() local347 for (int32_t t=0; t<targetCount; ++t) { in registerIDs()
1203 @init {boolean needsNop = false; int targetCount = 0;}1206 targetCount = 0;1217 (switch_target += label_ref_or_offset {$size+=4; targetCount++;})*1226 I_PACKED_SWITCH_TARGET_COUNT[$start, Integer.toString(targetCount)] $switch_target*)1232 I_PACKED_SWITCH_TARGET_COUNT[$start, Integer.toString(targetCount)] $switch_target*)1236 @init {boolean needsNop = false; int targetCount = 0;}1239 targetCount = 0;1248 (fixed_32bit_literal ARROW switch_target += label_ref_or_offset {$size += 8; targetCount++;})*1256 I_SPARSE_SWITCH_TARGET_COUNT[$start, Integer.toString(targetCount)]1262 I_SPARSE_SWITCH_TARGET_COUNT[$start, Integer.toString(targetCount)]
375 packed_switch_target_count returns[int targetCount]376 …: I_PACKED_SWITCH_TARGET_COUNT {$targetCount = Integer.parseInt($I_PACKED_SWITCH_TARGET_COUNT.text…383 int targetCount = $packed_switch_target_count.targetCount;384 $targets = new int[targetCount];394 sparse_switch_target_count returns[int targetCount]395 …: I_SPARSE_SWITCH_TARGET_COUNT {$targetCount = Integer.parseInt($I_SPARSE_SWITCH_TARGET_COUNT.text…397 sparse_switch_keys[int targetCount] returns[int[\] keys]399 $keys = new int[$targetCount];410 sparse_switch_targets[int baseAddress, int targetCount] returns[int[\] targets]412 $targets = new int[$targetCount];[all …]
1045 for (int t = 0, targetCount = targets.length; t < targetCount; ++ t) in visit()