HomeSort by relevance Sort by last modified time
    Searched defs:adjusted (Results 1 - 25 of 64) sorted by null

1 2 3

  /external/elfutils/tests/
dwfl-addr-sect.c 36 Dwarf_Addr adjusted = address; local
38 Elf_Scn *scn = dwfl_module_address_section (mod, &adjusted, &bias);
48 elf_ndxscn (scn), adjusted);
  /frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
AndroidLocale.java 40 String adjusted = languageCode.toLowerCase(Locale.US); local
44 adjusted = "iw";
46 adjusted = "in";
48 adjusted = "ji";
51 return adjusted;
  /external/tensorflow/tensorflow/core/kernels/
adjust_contrast_op.h 79 auto adjusted = local
85 output.device(d) = adjusted.cwiseMin(max_bcast).cwiseMax(min_bcast);
148 auto adjusted = (input - output) * contrast_factor_tensor; local
149 output.device(d) += adjusted;
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_meta_util.c 436 uint32_t adjusted = 0; local
441 adjusted |= 1 << (GEN7_SURFACE_CLEAR_COLOR_SHIFT + (3 - i));
445 updated = (old_color_value != adjusted);
446 *(uint32_t *)curr_color = adjusted;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
DebugInfoItem.java 169 int adjusted = opcode - 0x0A; local
170 int addressDiff = adjusted / 15;
171 int lineDiff = (adjusted % 15) - 4;
  /libcore/ojluni/src/test/java/time/test/java/time/temporal/
TestIsoWeekFields.java 172 LocalDate adjusted = DAY_OF_WEEK.adjustInto(date, j); local
173 assertEquals(adjusted.get(DAY_OF_WEEK), j);
174 assertEquals(adjusted.get(weekField), week);
175 assertEquals(adjusted.get(yearField), wby);
201 LocalDate adjusted = weekField.adjustInto(date, j); local
202 assertEquals(adjusted.get(weekField), j);
203 assertEquals(adjusted.get(DAY_OF_WEEK), dow);
204 assertEquals(adjusted.get(yearField), wby);
229 LocalDate adjusted = yearField.adjustInto(date, j); local
230 assertEquals(adjusted.get(yearField), j)
232 assertEquals(adjusted.get(weekField), (week == 53 && wbyLen(j) == 52 ? 52 : week), "" + date + " " + adjusted); local
257 LocalDate adjusted = IsoFields.WEEK_BASED_YEARS.addTo(date, j); local
260 assertEquals(adjusted.get(weekField), (week == 53 && wbyLen(wby + j) == 52 ? 52 : week), "" + date + " " + adjusted); local
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
DebugInfo.java 268 int adjusted = next - 0x0A; local
269 codeAddress += adjusted / 15;
270 lineNumber += (adjusted % 15) - 4;
  /external/tensorflow/tensorflow/contrib/boosted_trees/kernels/
prediction_ops.cc 275 DecisionTreeEnsembleConfig adjusted = local
281 ? adjusted.trees_size() - averaging_config_.average_last_n_trees()
282 : adjusted.trees_size() *
284 const int num_ensembles = adjusted.trees_size() - start_averaging;
285 for (int i = start_averaging; i < adjusted.trees_size(); ++i) {
286 float weight = adjusted.tree_weights(i);
287 adjusted.mutable_tree_weights()->Set(
290 MultipleAdditiveTrees::Predict(adjusted, trees_to_include, batch_features,
  /libcore/ojluni/src/main/java/java/time/
OffsetTime.java 571 * adjusted by the difference between the two offsets.
589 LocalTime adjusted = time.plusSeconds(difference); local
590 return new OffsetTime(adjusted, offset);
645 * Returns an adjusted copy of this time.
647 * This returns an {@code OffsetTime}, based on this one, with the time adjusted.
    [all...]
OffsetDateTime.java 676 * adjusted by the difference between the two offsets.
695 LocalDateTime adjusted = dateTime.plusSeconds(difference); local
696 return new OffsetDateTime(adjusted, offset);
    [all...]
  /external/vixl/src/aarch64/
simulator-aarch64.h 107 // | halfbit(frac) halfbit(adjusted)
126 // adjusted = frac - (halfbit(mantissa) & ~onebit(frac)); / |
128 // mantissa = (mantissa >> shift) + halfbit(adjusted);
174 // For subnormal outputs, the shift must be adjusted by the exponent. The +1
212 uint64_t adjusted = mantissa - adjustment; local
213 T halfbit_adjusted = (adjusted >> (shift - 1)) & 1;
    [all...]
  /toolchain/binutils/binutils-2.27/bfd/
cofflink.c 2456 bfd_boolean adjusted; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
decimal.py 315 operation is subnormal (that is, its adjusted exponent is less than
325 This occurs and signals overflow if the adjusted exponent of a result
364 adjusted exponent of the result would be smaller (more negative) than
831 self_adjusted = self.adjusted()
832 other_adjusted = other.adjusted()
2775 def adjusted(self): member in class:Decimal
    [all...]
  /external/python/cpython2/Lib/
decimal.py 314 operation is subnormal (that is, its adjusted exponent is less than
324 This occurs and signals overflow if the adjusted exponent of a result
363 adjusted exponent of the result would be smaller (more negative) than
830 self_adjusted = self.adjusted()
831 other_adjusted = other.adjusted()
2801 def adjusted(self): member in class:Decimal
    [all...]
  /external/python/cpython3/Lib/
_pydecimal.py 342 operation is subnormal (that is, its adjusted exponent is less than
352 This occurs and signals overflow if the adjusted exponent of a result
391 adjusted exponent of the result would be smaller (more negative) than
885 self_adjusted = self.adjusted()
886 other_adjusted = other.adjusted()
2944 def adjusted(self): member in class:Decimal
    [all...]
  /external/tinyxml2/
tinyxml2.cpp 313 char* adjusted = const_cast<char*>( XMLUtil::GetCharacterRef( p, buf, &len ) ); local
314 if ( adjusted == 0 ) {
321 TIXMLASSERT( q + len <= adjusted );
322 p = adjusted;
    [all...]
  /libcore/ojluni/src/main/java/java/util/
Locale.java 2427 String adjusted = languageCode.toLowerCase(Locale.US); local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
decimal.py 315 operation is subnormal (that is, its adjusted exponent is less than
325 This occurs and signals overflow if the adjusted exponent of a result
364 adjusted exponent of the result would be smaller (more negative) than
831 self_adjusted = self.adjusted()
832 other_adjusted = other.adjusted()
2803 def adjusted(self): member in class:Decimal
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
decimal.py 315 operation is subnormal (that is, its adjusted exponent is less than
325 This occurs and signals overflow if the adjusted exponent of a result
364 adjusted exponent of the result would be smaller (more negative) than
831 self_adjusted = self.adjusted()
832 other_adjusted = other.adjusted()
2803 def adjusted(self): member in class:Decimal
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
decimal.py 315 operation is subnormal (that is, its adjusted exponent is less than
325 This occurs and signals overflow if the adjusted exponent of a result
364 adjusted exponent of the result would be smaller (more negative) than
831 self_adjusted = self.adjusted()
832 other_adjusted = other.adjusted()
2803 def adjusted(self): member in class:Decimal
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
decimal.py 315 operation is subnormal (that is, its adjusted exponent is less than
325 This occurs and signals overflow if the adjusted exponent of a result
364 adjusted exponent of the result would be smaller (more negative) than
831 self_adjusted = self.adjusted()
832 other_adjusted = other.adjusted()
2803 def adjusted(self): member in class:Decimal
    [all...]
  /prebuilts/tools/common/m2/repository/jdom/jdom/1.0/
jdom-1.0.jar 
  /prebuilts/tools/common/bazel/formc-deps/
jdom.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.jarprocessor_1.0.300.v20130327-2119.jar 
  /prebuilts/misc/common/robolectric/3.6.1/lib/
robolectric-3.6.1.jar 

Completed in 885 milliseconds

1 2 3