Searched
full:increment (Results
351 -
375 of
3761) sorted by null
<<11121314151617181920>>
/external/eigen/Eigen/src/Core/ |
Stride.h | 24 * The inner stride is the pointer increment between two consecutive entries within a given row of a 27 * The outer stride is the pointer increment between two consecutive rows of a row-major matrix or
|
/external/google-breakpad/src/processor/ |
static_map_iterator.h | 31 // StaticMapIterator provides increment and decrement operators to iterate 57 // Increment & Decrement operators:
|
/external/guava/guava-gwt/src-super/com/google/common/math/super/com/google/common/math/ |
IntMath.java | 177 boolean increment; 183 increment = false; 186 increment = true; 189 increment = signum > 0; 192 increment = signum < 0; 202 increment = (mode == HALF_UP || (mode == HALF_EVEN & (div & 1) != 0)); 204 increment = cmpRemToHalfDivisor > 0; // closer to the UP value 210 return increment ? div + signum : div;
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
UForwardCharacterIterator.java | 68 * code unit (post-increment semantics). If index is out of 78 * point (post-increment semantics). If index does not point to a
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
UForwardCharacterIterator.java | 68 * code unit (post-increment semantics). If index is out of 79 * point (post-increment semantics). If index does not point to a
|
/external/iptables/extensions/ |
libip6t_HL.c | 41 " --hl-inc value Increment HL by <value 1-255>\n"); 104 printf("increment by");
|
libipt_TTL.c | 40 " --ttl-inc value Increment TTL by <value 1-255>\n"); 103 printf("increment by");
|
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/instr/ |
DuplicateFrameEliminator.java | 101 public void visitIincInsn(final int var, final int increment) { 103 mv.visitIincInsn(var, increment);
|
/external/libchrome/base/strings/ |
string_number_conversions.cc | 167 // - a static function, Increment, that appends the next digit appropriately 201 Sign::Increment(new_digit, output); 218 static void Increment(uint8_t increment, value_type* output) { 219 *output += increment; 234 static void Increment(uint8_t increment, value_type* output) { 235 *output -= increment;
|
/external/libmpeg2/common/armv8/ |
impeg2_format_conv.s | 146 sub x7, x7, x6 //// Source increment 148 sub x8, x8, x6 //// Destination increment 189 sub x7, x7, x6, lsr #1 //// Source increment 191 sub x8, x8, x6 //// Destination increment 319 sub x7, x7, x6 //// Source increment 321 sub x8, x8, x6 //// Destination increment 362 sub x7, x7, x6, lsr #1 //// Source increment 364 sub x8, x8, x6 //// Destination increment
|
/external/libweave/third_party/chromium/base/strings/ |
string_number_conversions.cc | 159 // - a static function, Increment, that appends the next digit appropriately 193 Sign::Increment(new_digit, output); 210 static void Increment(uint8_t increment, value_type* output) { 211 *output += increment; 226 static void Increment(uint8_t increment, value_type* output) { 227 *output -= increment;
|
/external/llvm/include/llvm/Analysis/ |
ScalarEvolutionNormalization.h | 13 // The following example illustrates post-increment uses and how normalized 31 // paired with a set of loops for which the expression is in "post-increment"
|
/external/llvm/lib/Target/AMDGPU/ |
SIInsertWaits.cpp | 87 /// \brief Get increment/decrement amount for this instruction. 253 Counters Increment = getHwCounts(*I); 258 LastIssued.Array[i] += Increment.Array[i]; 259 if (Increment.Array[i]) 261 Sum += Increment.Array[i]; 282 (LastOpcodeType == VMEM && Increment.Named.VM)) { 291 else if (Increment.Named.VM) 296 if (Increment.Named.EXP) {
|
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_fence.c | 39 * thread hits a fence command, it'll increment the fence counter. When 82 * Called by the rendering threads to increment the fence counter.
|
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/framed/ |
Spdy3Test.java | 91 private void windowUpdate(long increment) throws IOException { 92 new Spdy3.Writer(new Buffer(), true).windowUpdate(expectedStreamId, increment);
|
/external/pdfium/core/src/fxcodec/jbig2/ |
JBig2_HuffmanTable.cpp | 124 void CJBig2_HuffmanTable::ExtendBuffers(bool increment) { 125 if (increment)
|
/external/skia/src/gpu/vk/ |
GrVkTexture.cpp | 67 // Create() will increment the refCount of the image resource if it succeeds 80 // Create() will increment the refCount, and we'll unref when we're done with it
|
GrVkTextureRenderTarget.cpp | 132 // Create() will increment the refCount of the image resource if it succeeds 147 // Create() will increment the refCount, and we'll unref when we're done with it
|
/external/v8/src/compiler/ |
basic-block-instrumentor.cc | 69 // Add the increment instructions to the start of every block. 81 // Construct increment operation.
|
/external/webrtc/webrtc/modules/audio_coding/neteq/ |
sync_buffer.cc | 86 void SyncBuffer::IncreaseEndTimestamp(uint32_t increment) { 87 end_timestamp_ += increment;
|
sync_buffer.h | 71 // Adds |increment| to |end_timestamp_|. 72 void IncreaseEndTimestamp(uint32_t increment);
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/ |
WifiLastResortWatchdog.java | 57 * BSSID used to increment failure counts against ALL bssids associated with a particular SSID 127 // This is not a new SSID, increment the AP count for it 197 // increment various watchdog trigger count stats 246 * @param ssid the ssid to increment failure count for 247 * @param reason the failure type to increment count for 263 * @param bssid the bssid to increment failure count for 264 * @param reason the failure type to increment count for 513 * @param reason failure reason to increment count for
|
/art/runtime/gc/allocator/ |
dlmalloc.h | 61 void* ArtDlMallocMoreCore(void* mspace, intptr_t increment);
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/stat/descriptive/rank/ |
Median.java | 28 * one of the threads invokes the <code>increment()</code> or
|
/external/clang/include/clang/Frontend/ |
SerializedDiagnostics.h | 42 /// Do not change the order of values in this enum, and please increment the
|
Completed in 1004 milliseconds
<<11121314151617181920>>