HomeSort by relevance Sort by last modified time
    Searched refs:integer (Results 151 - 175 of 327) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/third_party/libvpx/source/libvpx/vp9/encoder/x86/
vp9_error_sse2.asm 34 ; thus the sum of 2 should fit in a 31bit integer (+ unused sign bit)
  /external/chromium_org/third_party/sqlite/src/test/
fts3_common.tcl 194 foreach docid [lsort -integer [array names ret]] {
  /external/chromium_org/v8/test/mjsunit/
math-floor-negative.js 31 // Trigger overflow when converting/truncating double to integer.
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1117.js 31 // constant 0 with a negative integer.
regress-1181.js 28 // The first count times, test is called with an integer argument and
  /external/chromium_org/v8/test/webkit/
dfg-store-unexpected-value-into-argument-and-osr-exit.js 32 x = true; // Force x to not have a hoisted integer speculation.
integer-extremes.js 25 "This test verifies that the bit twiddling done in JavaScriptCore's integer machinery works correctly on the current platform."
  /external/icu/icu4c/source/test/cintltst/
chashtst.c 76 s.integer = a;
77 t.integer = b;
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
JavaExpression.java 325 * An integer.
327 public static JavaExpression integer(String value) {
334 * An integer.
336 public static JavaExpression integer(int value) {
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_error_sse2.asm 34 ; thus the sum of 2 should fit in a 31bit integer (+ unused sign bit)
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
V8Binding.cpp 140 const int64_t kJSMaxInteger = 0x20000000000000LL - 1; // 2^53 - 1, maximum uniquely representable integer in ECMAScript.
191 // Fast case. The value is already a 32-bit integer in the right range.
240 // Fast case. The value is a 32-bit signed integer - possibly positive?
328 // Fast case. The value is already a 32-bit integer.
367 // Fast case. The value is already a 32-bit unsigned integer.
371 // Fast case. The value is a 32-bit signed integer - possibly positive?
423 // Fast case. The value is a 32-bit integer.
446 unsigned long long integer; local
447 doubleToInteger(numberValue, integer);
448 return integer;
502 unsigned long long integer; local
    [all...]
  /external/chromium_org/third_party/libxml/src/
triostr.c 971 trio_long_double_t integer = 0.0;
985 integer *= base;
986 integer += (isdigit((int)*source)
1029 /* Integer part */
1032 integer *= base;
1033 integer += (*source - '0');
1068 value = integer + fraction;
1134 Convert string to signed integer.
1183 Convert string to unsigned integer.
    [all...]
  /external/chromium_org/v8/test/mjsunit/compiler/
inline-arguments.js 297 b + 2.3, // integer in double register
298 c + 321, // integer in general register
299 c - 456, // integer in stack slot
  /external/libxml2/
triostr.c 971 trio_long_double_t integer = 0.0;
985 integer *= base;
986 integer += (isdigit((int)*source)
1029 /* Integer part */
1032 integer *= base;
1033 integer += (*source - '0');
1068 value = integer + fraction;
1134 Convert string to signed integer.
1183 Convert string to unsigned integer.
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.mli 66 | Integer
156 (** The predicate for an integer comparison ([icmp]) instruction.
478 (** {7 Operations on integer types} *)
480 (** [i1_type c] returns an integer type of bitwidth 1 in the context [c]. See
484 (** [i8_type c] returns an integer type of bitwidth 8 in the context [c]. See
488 (** [i16_type c] returns an integer type of bitwidth 16 in the context [c]. See
492 (** [i32_type c] returns an integer type of bitwidth 32 in the context [c]. See
496 (** [i64_type c] returns an integer type of bitwidth 64 in the context [c]. See
500 (** [integer_type c n] returns an integer type of bitwidth [n] in the context
504 (** [integer_bitwidth c ty] returns the number of bits in the integer type [ty
    [all...]
  /bionic/libc/kernel/uapi/sound/
asound.h 330 integer:1, member in struct:snd_interval
857 } integer; member in union:snd_ctl_elem_info::__anon987
892 } integer; member in union:snd_ctl_elem_value::__anon992
    [all...]
  /external/deqp/framework/referencerenderer/
rrVertexAttrib.cpp 149 inline deInt32 extendSign (deUint32 integer)
151 return deUint32(0 - deInt32((integer & (1 << (integerLen - 1))) << 1)) | integer;
  /external/kernel-headers/original/uapi/sound/
asound.h 347 integer:1, member in struct:snd_interval
852 } integer; member in union:snd_ctl_elem_info::__anon3114
881 } integer; member in union:snd_ctl_elem_value::__anon3119
    [all...]
  /external/chromium_org/content/shell/tools/plugin/
PluginObject.cpp 477 int32_t integer = NPVARIANT_TO_INT32(variant); local
478 return browser->getintidentifier(integer);
485 int32_t integer = static_cast<int32_t>(value); local
486 return browser->getintidentifier(integer);
524 int32_t integer = browser->intfromidentifier(identifier);
525 INT32_TO_NPVARIANT(integer, *result);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
varray.c 118 * \param normalized are integer types converted to floats in [-1, 1]?
119 * \param integer integer-valued values (will not be normalized to [-1,1])
128 GLboolean normalized, GLboolean integer,
263 array->Integer = integer;
405 const GLboolean integer = GL_TRUE; local
411 1, GL_UNSIGNED_BYTE, stride, GL_FALSE, integer, ptr);
503 * Set an integer-valued vertex attribute array.
515 const GLboolean integer = GL_TRUE local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/program/
program_lexer.l 175 yylval->integer = at_address;
184 TEMP { yylval->integer = at_temp; return TEMP; }
336 yylval->integer = strtol(yytext, NULL, 10);
337 return INTEGER;
  /external/libvorbis/doc/
05-comment.tex 49 1) [vendor_length] = read an unsigned integer of 32 bits
51 3) [user_comment_list_length] = read an unsigned integer of 32 bits
53 5) [length] = read an unsigned integer of 32 bits
  /external/mesa3d/src/mesa/main/
varray.c 118 * \param normalized are integer types converted to floats in [-1, 1]?
119 * \param integer integer-valued values (will not be normalized to [-1,1])
128 GLboolean normalized, GLboolean integer,
263 array->Integer = integer;
405 const GLboolean integer = GL_TRUE; local
411 1, GL_UNSIGNED_BYTE, stride, GL_FALSE, integer, ptr);
503 * Set an integer-valued vertex attribute array.
515 const GLboolean integer = GL_TRUE local
    [all...]
  /external/mesa3d/src/mesa/program/
program_lexer.l 175 yylval->integer = at_address;
184 TEMP { yylval->integer = at_temp; return TEMP; }
336 yylval->integer = strtol(yytext, NULL, 10);
337 return INTEGER;
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
GrammarReport.java 131 List<Integer> depths = new ArrayList<Integer>();
297 if ( decisions.contains(Utils.integer(dfa.decisionNumber)) ) {
300 decisions.add(Utils.integer(dfa.decisionNumber));
338 f.set(data, Integer.valueOf(v));

Completed in 1711 milliseconds

1 2 3 4 5 67 8 91011>>