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
{ | |
"workbench.editor.customLabels.patterns": { | |
"**/index.*": "${dirname}/${filename}.${extname}", | |
"**/page.tsx": "${dirname}/${filename}.${extname}", | |
"**/page.jsx": "${dirname}/${filename}.${extname}", | |
"**/loading.tsx": "${dirname}/${filename}.${extname}", | |
"**/loading.jsx": "${dirname}/${filename}.${extname}", | |
"**/default.tsx": "${dirname}/${filename}.${extname}", | |
"**/default.jsx": "${dirname}/${filename}.${extname}", | |
"**/layout.tsx": "${dirname}/${filename}.${extname}", |
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
public class Odd { | |
public static boolean isOdd(int x) { | |
if (x == 0) return false; | |
if (x == 1) return true; | |
if (x == 2) return false; | |
if (x == 3) return true; | |
if (x == 4) return false; | |
if (x == 5) return true; | |
if (x == 6) return false; | |
if (x == 7) return true; |
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
BOOLEAN __fastcall ExEnumHandleTable(PHANDLE_TABLE HandleTable, EX_ENUMERATE_HANDLE_ROUTINE EnumRoutine, PVOID EnumParam, PHANDLE StoppedHandle) | |
{ | |
struct _KTHREAD *CurrentKThread; // r13 | |
BOOLEAN EnumRoutineResult; // si | |
PHANDLE_TABLE _HandleTable; // rbp | |
PHANDLE_TABLE_ENTRY HandleTableEntry; // rdi | |
struct _HANDLE_TABLE_ENTRY_INFO *volatile InfoTable; // r8 | |
HANDLE LastVisitedHandle; // rbx | |
__int64 NextHandle; // r9 | |
HANDLE CurrentHandle; // [rsp+30h] [rbp-38h] |