This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| cc_defaults { | |
| name: "igt-gpu-tools-defaults", | |
| cflags: [ | |
| "-Wall", | |
| "-Werror", | |
| "-Wno-missing-field-initializers", | |
| "-Wno-unused-parameter", | |
| "-Wno-unused-variable", | |
| "-DHAVE_GETTID", | |
| "-DHAVE_LIBGEN_H", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| CONFIG_LOCALVERSION="-android-x86_64" | |
| CONFIG_DEFAULT_HOSTNAME="android_x86_64" | |
| # CONFIG_USELIB is not set | |
| CONFIG_AUDIT=y | |
| CONFIG_NO_HZ=y | |
| CONFIG_HIGH_RES_TIMERS=y | |
| CONFIG_PREEMPT=y | |
| CONFIG_BSD_PROCESS_ACCT=y | |
| CONFIG_TASKSTATS=y | |
| CONFIG_TASK_DELAY_ACCT=y |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| struct local_apic_register { | |
| unsigned long reserved0[4]; | |
| //RW | |
| unsigned long local_apic_id[2]; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package mrtska.gui; | |
| import java.io.BufferedInputStream; | |
| import java.io.ByteArrayInputStream; | |
| import java.io.DataInputStream; | |
| import java.io.DataOutputStream; | |
| import java.io.File; | |
| import java.io.FilenameFilter; | |
| import java.io.IOException; | |
| import java.io.RandomAccessFile; |