SNIPPETS
stringlengths 2
1.64k
| INTENTS
stringlengths 4
1.66k
|
|---|---|
test ax, ax
|
perform a bitwise and of the contents of ax and the contents of ax
|
test ax, ax \n jnz exeunt \n jmp carryon
|
jump to the label exeunt if the contents of the ax register is not zero else jump to the label carryon
|
test ax, ax \n jnz exeunt \n jmp carryon
|
if the contents of the ax register is not zero then jump to the label exeunt else jump to the label carryon
|
test bl, bl \n jz not_found
|
jump to the label not_found if the contents of the bl register is not zero
|
test bl, bl \n jz not_found
|
if the contents of the bl register is not zero then jump to the label not_found
|
test cl, cl
|
test the value of cl
|
test dl, 0x1 \n jnz ready_to_proxy
|
jump to the label ready_to_proxy if the contents of the dl register is not zero
|
test dl, 0x1 \n jnz ready_to_proxy
|
if the contents of the dl register is not zero then jump to the label ready_to_proxy
|
test eax, eax
|
check if eax is zero
|
test eax, eax
|
perform a bitwise and on the contents of the eax register
|
test eax, eax
|
test the value of eax
|
test eax, eax \n jnz _convert
|
jump to the label _convert if the contents of the eax register is not zero
|
test eax, eax \n jnz _convert
|
if the contents of the eax register is not zero then jump to the label _convert
|
test eax, eax \n jnz _parent \n pop ecx
|
jump to the label _parent if the contents of the eax register is not zero else restore the top of the stack into the ecx register
|
test eax, eax \n jnz _parent \n pop ecx
|
if the contents of the eax register is not zero then jump to the label _parent else restore the top of the stack into the ecx register
|
test eax, eax \n jnz _recv_http_request \n sub ecx, 0x6
|
jump to the label _recv_http_request if the contents of the eax register is not zero else subtract the value 0x6 from the contents of the ecx register
|
test eax, eax \n jnz _recv_http_request \n sub ecx, 0x6
|
if the contents of the eax register is not zero then jump to the label _recv_http_request else subtract the value 0x6 from the contents of the ecx register
|
test eax, eax \n jnz checkforfile
|
jump to the label checkforfile if the contents of the eax register is not zero
|
test eax, eax \n jnz checkforfile
|
if the contents of the eax register is not zero then jump to the label checkforfile
|
test eax, eax \n jnz do_next_accept
|
jump to the label do_next_accept if the contents of the eax register is not zero
|
test eax, eax \n jnz do_next_accept
|
if the contents of the eax register is not zero then jump to the label do_next_accept
|
test eax, eax \n jnz exit_on_error
|
jump to the label exit_on_error if the contents of the eax register is not zero
|
test eax, eax \n jnz exit_on_error
|
if the contents of the eax register is not zero then jump to the label exit_on_error
|
test eax, eax \n jnz l1
|
jump to the label l1 if the contents of the eax register is not zero
|
test eax, eax \n jnz l1
|
if the contents of the eax register is not zero then jump to the label l1
|
test eax, eax \n jnz l1 \n call myfunct
|
jump to the label l1 if the contents of the eax register is not zero else call the function myfunct
|
test eax, eax \n jnz l1 \n call myfunct
|
if the contents of the eax register is not zero then jump to the label l1 else call the function myfunct
|
test eax, eax \n jnz l4 \n call search
|
jump to the label l4 if the contents of the eax register is not zero else call the function search
|
test eax, eax \n jnz l4 \n call search
|
if the contents of the eax register is not zero then jump to the label l4 else call the function search
|
test eax, eax \n jnz short _parent
|
jump short to the label _parent if the contents of the eax register is not zero
|
test eax, eax \n jnz short _parent
|
if the contents of the eax register is not zero then jump short to the label _parent
|
test eax, eax \n js _while_loop
|
jump to the label _while_loop if the contents of the eax register is negative
|
test eax, eax \n js _while_loop
|
if the contents of the eax register is negative then jump to the label _while_loop
|
test eax, eax \n js close
|
jump to the label close if the contents of the eax register is negative
|
test eax, eax \n js close
|
if the contents of the eax register is negative then jump to the label close
|
test eax, eax \n js old_dirent
|
jump to the label old_dirent if the contents of the eax register is negative
|
test eax, eax \n js old_dirent
|
if the contents of the eax register is negative then jump to the label old_dirent
|
test eax, eax \n js short socket
|
jump short to the label socket if the contents of the eax register is negative
|
test eax, eax \n js short socket
|
if the contents of the eax register is negative then jump short to the label socket
|
test eax, eax \n jz check_html
|
jump to the label check_html if the contents of the eax register is zero
|
test eax, eax \n jz check_html
|
if the contents of the eax register is zero then jump to the label check_html
|
test eax, eax \n jz check_html \n jmp while
|
jump to the label check_html if the contents of the eax register is zero else jump to the while label
|
test eax, eax \n jz check_html \n jmp while
|
if the contents of the eax register is zero then jump to the label check_html else jump to the while label
|
test eax, eax \n jz close
|
jump to the label close if the contents of the eax register is zero
|
test eax, eax \n jz close
|
if the contents of the eax register is zero then jump to the label close
|
test eax, eax \n jz close \n mov ebx, edx
|
jump to the label close if the contents of the eax register is zero else move the contents of the edx register into the ebx register
|
test eax, eax \n jz close \n mov ebx, edx
|
if the contents of the eax register is zero then jump to the label close else move the contents of the edx register into the ebx register
|
test eax, eax \n jz proc_name
|
jump to the label proc_name if the contents of the eax register is zero
|
test eax, eax \n jz proc_name
|
if the contents of the eax register is zero then jump to the label proc_name
|
test eax, eax \n jz ready_to_proxy
|
jump to the label ready_to_proxy if the contents of the eax register is zero
|
test eax, eax \n jz ready_to_proxy
|
if the contents of the eax register is zero then jump to the label ready_to_proxy
|
test eax, eax \n jz short loc_402B13
|
jump short to the memory location loc_402B13 if the contents of the eax register is zero
|
test eax, eax \n jz short loc_402B13
|
if the contents of the eax register is zero then jump short to the memory location loc_402B13
|
test eax, eax \n jz short loc_402C13
|
jump short to the memory location loc_402C13 if the contents of the eax register is zero
|
test eax, eax \n jz short loc_402C13
|
if the contents of the eax register is zero then jump short to the memory location loc_402C13
|
test eax, eax \n jz socket
|
jump to the label socket if the contents of the eax register is zero
|
test eax, eax \n jz socket
|
if the contents of the eax register is zero then jump to the label socket
|
test eax, eax \n jz socket \n xor eax, eax
|
jump to the label socket if the contents of the eax register is zero else zero out the contents of the eax register
|
test eax, eax \n jz socket \n xor eax, eax
|
if the contents of the eax register is zero then jump to the label socket else zero out the contents of the eax register
|
test eax, eax \n jz write \n xor eax, eax
|
jump to the label write if the contents of the eax register is zero, else zero out the contents of the eax register
|
test eax, eax \n jz write \n xor eax, eax
|
if the contents of the eax register is zero then jump to the label write else zero out the contents of the eax register
|
test ebx, ebx
|
test the contents of the ebx register
|
test ebx, ebx \n js short l1
|
jump short to the label l1 if the contents of the ebx register is negative
|
test ecx, ecx
|
test the contents of the ecx register
|
test edx, edx
|
test the contents of the edx register
|
test esi, 01h \n je even_number
|
jump to even_number is the contents in esi is even
|
test si, 01h
|
perform and operation between si and 01h
|
test si, 01h \n je even_number
|
perform si & 01h discarding the result but set the zero flag to 1 if the least significant but of si is 0, even set the zero flag to 0 if the and operation between the leas singificant bit of si and 01h is zero, while set the zero flag = 1 if the and operation result is 1. if the si == 0 go to even_number label ese go to odd_number label
|
three:
|
define _three label
|
three:
|
declare the three label
|
todo:
|
declare todo_label
|
todo:
|
declare the todo label
|
total_students equ 50
|
define constant total_students equal to 50
|
two:
|
define two_label
|
two:
|
define _two label
|
two:
|
define two label
|
two:
|
declare the two label
|
up:
|
declare the up label
|
var db 32
|
declare var byte variable and initialize it to 32
|
var db 64
|
declare a byte containing the value 64 at label the memory location var
|
var_a db 232
|
allocate one byte of memory for var_a variable and initialize it to 232
|
var_a: dd 0x0
|
create the doubleword variable var_a in memory and initialize it to zero
|
var_b db 'c'
|
allocate one byte of memory for var_b variable and initialize it to 'c'
|
var2 db ?
|
declare an uninitialized byte labeled var2
|
var2 db ?
|
declare an uninitialized byte referred to as location var2
|
variablename1: resb 1
|
reserve 1 byte for variableName1
|
variablename2: resw 1
|
reserve 1 word for variableName2
|
variablename3: resd 1
|
reserve 1 double word for variableName3
|
word_table dw 134, 345, 564, 123
|
declare the array of words word_table initialized to 134 345 564 and 123
|
word_value dw 300
|
define the word value word_value and initialize it to 300
|
word1 word 65535
|
define word1 unsigned word and initialize it to 65535
|
word2 sword Ð32768
|
define word2 signed word and initialize it to -32768
|
word3 word ?
|
define word3 uninitialized unsigned word
|
wordvar: resw 1
|
reserve a word for wordvar
|
wrap_around:
|
define _wrap_around label
|
wrap_around:
|
declare the wrap_around label
|
write_syscall equ 4
|
define weite_syscall =4
|
write_syscall equ 4
|
define write_syscall equal to 4
|
write:
|
delcare _write label
|
write:
|
define write_label
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.