HomeSort by relevance Sort by last modified time
    Searched refs:addition (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/stressapptest/src/
pattern.h 117 uint32 addition = (expected ^ index); local
118 uint32 carry = (addition & crc) >> 31;
120 return crc + addition + carry;
  /external/eyes-free/AccessCheck/src/com/android/accessibility/
AccessibilityValidator.java 119 InputSource addition; local
121 addition = new InputSource(new FileReader(file));
123 addition.setPublicId(file.toString());
124 layoutFiles.add(addition);
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
IntervalSet.java 100 protected void add(Interval addition) {
101 //System.out.println("add "+addition+" to "+intervals.toString());
102 if ( addition.b<addition.a ) {
109 if ( addition.equals(r) ) {
112 if ( addition.adjacent(r) || !addition.disjoint(r) ) {
114 Interval bigger = addition.union(r);
129 if ( addition.startsBeforeDisjoint(r) ) {
132 iter.add(addition);
    [all...]
  /external/webkit/Tools/Scripts/
svn-unapply 53 # When reversing an addition, check that the file matches what's being removed.
152 my $addition = 0;
154 $addition = 1 if ($diffHashRef->{isNew} || $diffHashRef->{copiedFromPath} || $patch =~ /\n@@ -0,0 .* @@/);
157 if (!$addition && !$deletion && !$isSvnBinary) {
168 # Either a deletion, an addition or a binary change.
202 # Reverse addition
svn-apply 226 # Addition or Modification
231 # Addition
266 # Addition or Modification
320 my $addition = 0;
322 $addition = 1 if ($diffHashRef->{isNew} || $patch =~ /\n@@ -0,0 .* @@/);
325 if (!$addition && !$deletion && !$isBinary) {
337 # Either a deletion, an addition or a binary change.
351 # Addition
  /external/qemu/distrib/sdl-1.2.15/test/
testalpha.c 66 int range, addition; local
131 addition = (alphamask+1)/8;
132 if ( (int)trans+addition > alphamask ) {
135 trans += addition;
  /external/v8/test/mjsunit/
sum-0-plus-undefined-is-NaN.js 31 * @fileoverview Test addition of 0 and undefined.
error-constructors.js 78 // name is not tested above, but in addition we should have no enumerable
  /system/media/camera/docs/
camera_metadata_tags.mako 61 * addition, the name and type of the tag needs to be added to
  /external/chromium/net/tools/flip_server/
balsa_frame.cc 1353 const signed char addition = buf[static_cast<int>(c)]; local
    [all...]
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_nodeappendchildnodeancestor.js 84 An attempt to make such an addition should raise the
hc_nodechildnodesappendchild.js 87 addition to the child list. It should return the value 14.
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLTableElement31.js 78 The insertRow() method inserts a new empty table row. In addition, when
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_nodeappendchildnodeancestor.js 84 An attempt to make such an addition should raise the
hc_nodechildnodesappendchild.js 87 addition to the child list. It should return the value 14.
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLTableElement31.js 78 The insertRow() method inserts a new empty table row. In addition, when
  /external/quake/quake/src/WinQuake/
quake-rogue.spec.sh 38 that with the addition of extreme power-ups to make the arsenal more
  /external/v8/src/
d8-posix.cc 349 Handle<String> addition = String::New(buffer, length); local
350 accumulator = String::Concat(accumulator, addition);
  /external/v8/src/arm/
simulator-arm.h 246 bool addition);
  /libcore/luni/src/main/java/java/math/
BigInt.java 292 static BigInt addition(BigInt a, BigInt b) { method in class:BigInt
BigInteger.java 391 return new BigInteger(BigInt.addition(lhs, rhs));
    [all...]
  /external/llvm/lib/Transforms/Instrumentation/
PathProfiling.cpp 306 // oldVal + addition.
307 void insertNumberIncrement(BLInstrumentationNode* node, Value* addition,
    [all...]
  /external/e2fsprogs/lib/ext2fs/
tdb.c 1013 static int tdb_expand_file(struct tdb_context *tdb, tdb_off_t size, tdb_off_t addition)
1022 if (ftruncate(tdb->fd, size+addition) == -1) {
1024 if (pwrite(tdb->fd, &b, 1, (size+addition) - 1) != 1) {
1026 size+addition, strerror(errno)));
1035 while (addition) {
1036 int n = addition>sizeof(buf)?sizeof(buf):addition;
1043 addition -= n;
    [all...]
  /external/libvorbis/doc/
08-residue.tex 232 stream undecodable. In addition, any codebook number greater than the
248 In addition to configuration information, the residue decode process
  /external/zlib/src/contrib/masmx64/
gvmat64.asm 114 ; all the +4 offsets are due to the addition of pending_buf_size (in zlib
132 ; all the +zlib1222add offsets are due to the addition of fields

Completed in 1107 milliseconds

1 2 3