Home
last modified time | relevance | path

Searched refs:mod (Results 1 – 25 of 25) sorted by relevance

/aosp14/system/core/toolbox/
H A Dmodprobe.cpp151 for (auto mod : android::base::Split(stripComments(mods), "\n")) { in modprobe_main() local
152 mod = android::base::Trim(mod); in modprobe_main()
153 if (mod == "") continue; in modprobe_main()
154 if (std::find(modules.begin(), modules.end(), mod) != modules.end()) continue; in modprobe_main()
155 modules.emplace_back(mod); in modprobe_main()
/aosp14/frameworks/base/apct-tests/perftests/core/src/android/libcore/
H A DBigIntegerPerfTest.java177 if (!newRes.mod(odd1).equals(base.modPow(exponent, odd1))) { in repeatModPow()
182 + newRes.mod(odd1) in repeatModPow()
191 if (!newRes.mod(odd2).equals(base.modPow(exponent, odd2))) { in repeatModPow()
211 if (!lastRes.mod(odd1).equals(arg.modInverse(odd1))) { in repeatModInverse()
214 if (!lastRes.mod(odd2).equals(arg.modInverse(odd2))) { in repeatModInverse()
/aosp14/frameworks/base/rs/java/android/renderscript/
H A DInt2.java256 public void mod(Int2 a) { in mod() method in Int2
268 public static Int2 mod(Int2 a, Int2 b) { in mod() method in Int2
281 public void mod(int value) { in mod() method in Int2
293 public static Int2 mod(Int2 a, int b) { in mod() method in Int2
H A DLong2.java256 public void mod(Long2 a) { in mod() method in Long2
268 public static Long2 mod(Long2 a, Long2 b) { in mod() method in Long2
281 public void mod(long value) { in mod() method in Long2
293 public static Long2 mod(Long2 a, long b) { in mod() method in Long2
H A DShort2.java259 public void mod(Short2 a) { in mod() method in Short2
271 public static Short2 mod(Short2 a, Short2 b) { in mod() method in Short2
284 public void mod(short value) { in mod() method in Short2
296 public static Short2 mod(Short2 a, short b) { in mod() method in Short2
H A DInt3.java275 public void mod(Int3 a) { in mod() method in Int3
288 public static Int3 mod(Int3 a, Int3 b) { in mod() method in Int3
302 public void mod(int value) { in mod() method in Int3
315 public static Int3 mod(Int3 a, int b) { in mod() method in Int3
H A DLong3.java275 public void mod(Long3 a) { in mod() method in Long3
288 public static Long3 mod(Long3 a, Long3 b) { in mod() method in Long3
302 public void mod(long value) { in mod() method in Long3
315 public static Long3 mod(Long3 a, long b) { in mod() method in Long3
H A DShort3.java275 public void mod(Short3 a) { in mod() method in Short3
288 public static Short3 mod(Short3 a, Short3 b) { in mod() method in Short3
302 public void mod(short value) { in mod() method in Short3
315 public static Short3 mod(Short3 a, short b) { in mod() method in Short3
H A DLong4.java294 public void mod(Long4 a) { in mod() method in Long4
308 public static Long4 mod(Long4 a, Long4 b) { in mod() method in Long4
323 public void mod(long value) { in mod() method in Long4
337 public static Long4 mod(Long4 a, long b) { in mod() method in Long4
H A DInt4.java294 public void mod(Int4 a) { in mod() method in Int4
308 public static Int4 mod(Int4 a, Int4 b) { in mod() method in Int4
323 public void mod(int value) { in mod() method in Int4
337 public static Int4 mod(Int4 a, int b) { in mod() method in Int4
H A DShort4.java294 public void mod(Short4 a) { in mod() method in Short4
308 public static Short4 mod(Short4 a, Short4 b) { in mod() method in Short4
323 public void mod(short value) { in mod() method in Short4
337 public static Short4 mod(Short4 a, short b) { in mod() method in Short4
/aosp14/frameworks/base/core/java/com/android/internal/app/procstats/
H A DDumpUtils.java499 public static int printArrayEntry(PrintWriter pw, String[] array, int value, int mod) { in printArrayEntry() argument
500 int index = value/mod; in printArrayEntry()
506 return value - index*mod; in printArrayEntry()
510 int[] enums, int value, int mod) { in printProto() argument
511 int index = value/mod; in printProto()
515 return value - index*mod; in printProto()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/keyguard/
H A DPinShapeAdapter.kt40 return shapes[pos.mod(shapes.size)]
/aosp14/frameworks/base/libs/securebox/src/com/android/security/
H A DSecureBox.java443 .mod(EC_PARAM_P) // This will speed up the next multiplication in validateEcPoint()
446 .mod(EC_PARAM_P); in validateEcPoint()
/aosp14/frameworks/base/core/tests/BroadcastRadioTests/src/com/android/server/broadcastradio/hal2/
H A DStartProgramListUpdatesFanoutTest.java302 for (RadioManager.ProgramInfo mod : modified) { in updateHalProgramInfo()
303 programListChunk.modified.add(TestUtils.programInfoToHal(mod)); in updateHalProgramInfo()
/aosp14/frameworks/base/tools/bit/
H A Dmain.cpp723 map<string,Module>::iterator mod = modules.find(target->name); in run_phases() local
724 if (mod != modules.end()) { in run_phases()
725 target->module = mod->second; in run_phases()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/ui/
H A DControlsUiControllerImpl.kt691 val mod = selectedStructure.controls.size % maxColumns regex
692 var spacersToAdd = if (mod == 0) 0 else maxColumns - mod
/aosp14/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
H A DExifInterface.java1069 ExifModifier mod = null; in rewriteExif() local
1071 mod = new ExifModifier(buf, this); in rewriteExif()
1073 mod.modifyTag(t); in rewriteExif()
1075 return mod.commit(); in rewriteExif()
/aosp14/frameworks/base/packages/SystemUI/compose/features/src/com/android/systemui/bouncer/ui/composable/
H A DPinInputDisplay.kt406 return shapesToDot[position.mod(shapesToDot.size)]
/aosp14/system/core/libmodprobe/
H A Dlibmodprobe.cpp529 for (auto& [mod, deps] : mod_with_deps) { in LoadModulesParallel()
/aosp14/frameworks/base/packages/EasterEgg/src/com/android/egg/landroid/
H A DMainActivity.kt115 else -> Random.Default.nextLong().mod(10_000_000).toLong()
/aosp14/frameworks/base/tools/aapt2/integration-tests/CommandTests/
H A Dandroid-33.jarAndroidManifest.xml META-INF/ META-INF/MANIFEST.MF NOTICES/ NOTICES/libcore ...
/aosp14/frameworks/base/boot/hiddenapi/
H A Dhiddenapi-max-target-o.txt45808 Landroid/renderscript/Int2;->mod(I)V
45809 Landroid/renderscript/Int2;->mod(Landroid/renderscript/Int2;)V
45842 Landroid/renderscript/Int3;->mod(I)V
45843 Landroid/renderscript/Int3;->mod(Landroid/renderscript/Int3;)V
45876 Landroid/renderscript/Int4;->mod(I)V
45910 Landroid/renderscript/Long2;->mod(J)V
45944 Landroid/renderscript/Long3;->mod(J)V
45978 Landroid/renderscript/Long4;->mod(J)V
46994 Landroid/renderscript/Short2;->mod(S)V
47028 Landroid/renderscript/Short3;->mod(S)V
[all …]
/aosp14/frameworks/base/config/
H A Dboot-image-profile.txt25737 HSPLjava/math/BigInteger;->mod(Ljava/math/BigInteger;)Ljava/math/BigInteger;
32782 HSPLsun/util/calendar/CalendarUtils;->mod(II)I
32783 HSPLsun/util/calendar/CalendarUtils;->mod(JJ)J
/aosp14/frameworks/base/packages/CredentialManager/
H A Dprofile.txt.prof9603 HSPLkotlin/internal/ProgressionUtilKt;->mod(II)I