Skip to content
Snippets Groups Projects
Select Git revision
  • 2e9600204fe5a820e229b9f60f3dee23a8b835ab
  • master default
  • pristine-tar
  • release-4.4
  • release-4.5
  • release-4.3
  • release-4.2
  • release-4.1
  • release-4.0
  • release-3.7
  • release-3.6
  • release-3.5
  • release-3.4
  • release-3.3
  • release-3.2
  • release-3.1
  • release-3.0
  • release-2.23
  • release-2.22
  • release-2.21
  • release-2.20
  • bugzilla-4.4.8
  • bugzilla-4.4.7
  • bugzilla-4.4.6
  • bugzilla-4.5.4
  • bugzilla-4.5.3
  • bugzilla-4.5.2
  • bugzilla-4.5.1
  • bugzilla-4.4.4
  • bugzilla-4.4.3
  • bugzilla-4.4.2
  • bugzilla-4.4.1
  • bugzilla-4.4
  • bugzilla-4.3.3
  • bugzilla-4.3.2
  • bugzilla-4.3.1
  • bugzilla-4.2.9
  • bugzilla-4.2.8
  • bugzilla-4.2.7
  • bugzilla-4.2.6
  • bugzilla-4.2.5
41 results

quicksearch.html

Blame
  • int 1013 B
    NAME
    	int - integers numbers
    
    SYNTAX EXAMPLE
    	9797 /* decimal number */
    	0x20 /* hexadecimal number */
    	020  /* octal number */
    
    DESCRIPTION
    	This type stores an integer, normally it is 32 bits and use 4 bytes
    	of storage when used in a global variable.
    
    	A list of operators that applies to ints follows:
    
    	In this list a and b is used to represent an integer expression:
    
    	a + b	summation
    	a - b	subtraction
    	a * b	multiplication
    	a / b	integer division
    	a % b	modulo ( same thing as  a - ( a / b ) * b )
    	a | b	bitwise or
    	a & b	bitwise and
    	a ^ b	bitwise xor
    	! a	boolean not, returns 1 if a is zero 0 otherwise
    	~ a	bitwise complement
    	- a	negation
    	a == b	return 1 if a is equal to b, 0 otherwise
    	a != b	return 0 if a is equal to b, 1 otherwise
    	a < b	returns 1 if a is lesser than b, 0 otherwise
    	a <= b	returns 1 if a is lesser or equal to b, 0 otherwise
    	a > b	returns 1 if a is greater than b, 0 otherwise
    	a >= b	returns 1 if a is greater or equal to b, 0 otherwise
    
    KEYWORDS
    	types
    
    SEE ALSO
    	float