HomeSort by relevance Sort by last modified time
    Searched refs:integer (Results 76 - 100 of 152) sorted by null

1 2 34 5 6 7

  /external/chromium/third_party/icu/source/common/
uhash.h 86 * integer, we pass it around by value.
90 int32_t integer; member in union:UHashTok
349 * Put a (key=integer, value=pointer) item in a UHashtable.
354 * @param key The integer key to store.
367 * Put a (key=pointer, value=integer) item in a UHashtable. If the
373 * @param value The integer value to store.
385 * Put a (key=integer, value=integer) item in a UHashtable. If the
391 * @param value The integer value to store.
414 * Retrieve a pointer value from a UHashtable using a integer key
    [all...]
  /external/icu4c/common/
uhash.h 86 * integer, we pass it around by value.
90 int32_t integer; member in union:UHashTok
349 * Put a (key=integer, value=pointer) item in a UHashtable.
354 * @param key The integer key to store.
367 * Put a (key=pointer, value=integer) item in a UHashtable. If the
373 * @param value The integer value to store.
385 * Put a (key=integer, value=integer) item in a UHashtable. If the
391 * @param value The integer value to store.
414 * Retrieve a pointer value from a UHashtable using a integer key
    [all...]
  /external/sonivox/arm-hybrid-22k/lib_src/
ARM-E_interpolate_loop_gnu.s 115 @ carry overflow from fraction to integer portion
ARM-E_interpolate_noloop_gnu.s 107 @ carry overflow from fraction to integer portion
  /external/sonivox/arm-wt-22k/lib_src/
ARM-E_interpolate_loop_gnu.s 115 @ carry overflow from fraction to integer portion
ARM-E_interpolate_noloop_gnu.s 107 @ carry overflow from fraction to integer portion
  /frameworks/base/services/java/com/android/server/
ThrottleService.java 397 R.integer.config_datause_polling_period_sec);
403 R.integer.config_datause_threshold_bytes);
405 R.integer.config_datause_throttle_kbitsps);
433 R.integer.config_datause_notification_type);
    [all...]
UiModeManagerService.java 335 com.android.internal.R.integer.config_carDockKeepsScreenOn) == 1);
337 com.android.internal.R.integer.config_deskDockKeepsScreenOn) == 1);
    [all...]
  /libcore/luni/src/main/java/java/math/
BigDecimal.java 28 * This class represents immutable integer numbers of arbitrary length. Large
33 * Since the class was modeled to offer all the functionality as the {@link Integer}
224 * The arbitrary precision integer (unscaled value) in the internal
234 * The 32-bit integer scale in the internal representation of {@code BigDecimal}.
352 newScale = (long)scale - Integer.parseInt(scaleString);
579 * Constructs a new {@code BigDecimal} instance from the given big integer
591 * Constructs a new {@code BigDecimal} instance from the given big integer
2828 long integer = unscaledVal \/ sizeOfFraction; local
    [all...]
  /external/dropbear/libtommath/
bn.tex 76 large integer numbers. It was written in portable ISO C source code so that it will build on any platform with a conforming
321 The last two codes listed are not actually ``return'ed'' by a function. They are placed in an integer (the caller must
322 provide the address of an integer it can store to) which the caller can access. To convert one of the three return codes
334 The basic ``multiple precision integer'' type is known as the ``mp\_int'' within LibTomMath. This data type is used to
335 organize all of the data required to manipulate the integer it represents. Within LibTomMath it has been prototyped
346 Where ``mp\_digit'' is a data type that represents individual digits of the integer. By default, an mp\_digit is the
385 represents the default integer which is zero. If the functions returns MP\_OKAY then the mp\_int is ready to be used
441 Certain algorithms require more than one large integer. In these instances it is ideal to initialize all of the mp\_int
595 the integer the mp\_int is meant to equal. The \textit{used} parameter dictates how many digits are significant, that is,
655 This will zero the contents of $a$ and make it represent an integer equal to the value of $b$. Note that thi
    [all...]
  /external/v8/test/mjsunit/
fuzz-natives.js 117 // to unexpected integer values.
  /external/webkit/JavaScriptCore/runtime/
JSImmediate.h 74 * integer, or they mark the value as being an immediate of a type other than integer, with a secondary
78 * Where TT is equal to 10 this indicates this is a type of immediate other than an integer, and the next
112 * pointer and integer values. Since any 64-bit bit pattern where the top 15 bits are
120 * 64-bit integer representation of the number. After this manipulation, no encoded
129 * Integer: FFFF:0000:IIII:IIII
163 // If all bits in the mask are set, this indicates an integer number,
170 static const intptr_t TagTypeNumber = 0x1; // bottom bit set indicates integer, this dominates the following bit
172 static const intptr_t TagBitTypeOther = 0x2; // second bit set indicates immediate other than an integer
297 static ALWAYS_INLINE JSValue makeValue(intptr_t integer)
    [all...]
  /device/samsung/crespo/alsa-utils/alsactl/
state.c 57 static int snd_config_integer_add(snd_config_t *father, char *id, long integer)
69 err = snd_config_set_integer(leaf, integer);
77 static int snd_config_integer64_add(snd_config_t *father, char *id, long long integer)
89 err = snd_config_set_integer64(leaf, integer);
    [all...]
  /external/bison/src/
scan-gram.l 276 val->integer = scan_integer (yytext, 10, *loc);
280 val->integer = scan_integer (yytext, 16, *loc);
832 | Possible inputs: $[<TYPENAME>]($|integer) |
891 complain_at (loc, _("integer out of range: %s"), quote (text));
958 complain_at (loc, _("integer out of range: %s"), quote (text));
998 | Scan NUMBER for a base-BASE integer at location LOC. |
1009 complain_at (loc, _("integer out of range: %s"), quote (number));
    [all...]
  /external/chromium/third_party/libevent/
event.h 347 @param cb a function taking two arguments: an integer severity between
    [all...]
  /external/v8/src/
serialize.cc 859 void SnapshotByteSink::PutInt(uintptr_t integer, const char* description) {
862 if (integer >= static_cast<uintptr_t>(1u) << shift) {
863 Put((static_cast<int>((integer >> shift)) & 0x7f) | 0x80, "IntPart");
866 PutSection(static_cast<int>(integer & 0x7f), "IntLastPart");
    [all...]
serialize.h 311 void PutInt(uintptr_t integer, const char* description);
  /external/webkit/WebCore/css/
CSSGrammar.y 65 int integer;
173 %token <number> INTEGER
229 %type <integer> property
247 %type <integer> match
248 %type <integer> unary_operator
1130 | ':' FUNCTION maybe_space INTEGER maybe_space ')' {
    [all...]
  /frameworks/base/services/java/com/android/server/am/
BatteryStatsService.java 56 com.android.internal.R.integer.config_radioScanningTimeout)
  /packages/wallpapers/Basic/src/com/android/wallpaper/nexus/
NexusRS.java 172 mWorldState.mode = mResources.getInteger(R.integer.nexus_mode);
  /external/dropbear/libtomcrypt/
crypt.tex     [all...]
  /external/dropbear/libtomcrypt/testprof/
der_tests.c 114 INTEGER 12345678
266 /* INTEGER */
457 unsigned long integer, oidbuf[10], outlen, inlen, x, y; local
466 integer = 1;
477 LTC_SET_ASN1(types, 4, LTC_ASN1_SHORT_INTEGER, &integer, 1);
559 if (y != x) { fprintf(stderr, "DER INTEGER size mismatch\n"); return 1; }
570 /* test short integer */
587 fprintf(stderr, "DER INTEGER short encoding failed, %lu, %lu\n", x, y);
598 fprintf(stderr, "DER INTEGER short decoding failed, %lu, %lu\n", x, mp_get_int(a));
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
LatinKeyboardBaseView.java 250 private final HashMap<Integer, Integer> mTextHeightCache = new HashMap<Integer, Integer>();
490 mDelayBeforePreview = res.getInteger(R.integer.config_delay_before_preview);
491 mDelayAfterPreview = res.getInteger(R.integer.config_delay_after_preview);
557 mKeyRepeatInterval = res.getInteger(R.integer.config_key_repeat_interval);
832 Integer labelHeightValue = mTextHeightCache.get(labelSize);
    [all...]
  /external/libffi/src/powerpc/
ppc_closure.S 45 # in registers (both floating point and integer)
  /external/speex/libspeex/
preprocess.c 358 float integer, frac; local
365 integer = floor(2*x);
366 ind = (int)integer;
371 frac = 2*x-integer;
    [all...]

Completed in 1349 milliseconds

1 2 34 5 6 7