Searched refs:addition (Results 1 - 25 of 72) sorted by relevance

123

/external/curl/docs/cmdline-opts/
H A Dretry-connrefused.d5 In addition to the other conditions, consider ECONNREFUSED as a transient
H A Dproto.d13 Permit this protocol in addition to protocols already permitted (this is
H A Dremote-name.d15 can be used in addition to this option. If the server chooses a file name and
/external/stressapptest/src/
H A Dpattern.h117 uint32 addition = (expected ^ index); local
118 uint32 carry = (addition & crc) >> 31;
120 return crc + addition + carry;
/external/eyes-free/AccessCheck/src/com/android/accessibility/
H A DAccessibilityValidator.java119 InputSource addition;
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/
H A DIntervalSet.java100 protected void add(Interval addition) { argument
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/deqp/external/vulkancts/modules/vulkan/tessellation/
H A DvktTessellationGeometryPointSizeTests.cpp77 int addition = 0; local
83 addition += 2;
87 return 4 + addition;
89 addition += 2;
93 return 2 + addition;
/external/llvm/test/MC/Mips/
H A Dhigher-highest-addressing.s33 # is chosen so that it is just below the value that triggers the addition of +1
/external/compiler-rt/lib/builtins/
H A Dfp_add_impl.inc1 //===----- lib/fp_add_impl.inc - floaing point addition -----------*- C -*-===//
10 // This file implements soft-float addition with the IEEE-754 default rounding
70 // have opposite signs, we are performing a subtraction; otherwise addition.
105 else /* addition */ {
108 // If the addition carried up, we need to right-shift the result and
/external/tensorflow/tensorflow/contrib/timeseries/python/timeseries/
H A Dmath_utils_test.py44 addition = numpy.random.normal(size=[4, 4]).astype(numpy.float32)
51 current_contribution = numpy.dot(numpy.dot(transition_power, addition),
61 array_size, transition, addition).eval())
/external/mesa3d/docs/specs/
H A DMESA_multithread_makecurrent.spec67 In addition, a rendering context can be current for only one
70 In addition, an indirect rendering context can be current for
H A DMESA_query_renderer.spec44 In addition, versions of supported APIs and implementation API
60 addition, this extension provides a mechanism for applications to create
285 9) In addition to being able to query the supported versions, should
/external/googletest/googletest/docs/
H A DPkgconfig.md42 that all libraries have been compiled with threading enabled. In addition,
/external/libunwind/doc/
H A Dunw_flush_cache.tex21 target address-space \Var{as}. In addition, all info cached for
H A Dunw_step.tex50 In addition, \Func{unw\_step}() may return any error returned by the
H A Dunw_get_fpreg.tex55 In addition, \Func{unw\_get\_fpreg}() may return any error returned by
H A Dunw_get_reg.tex56 In addition, \Func{unw\_get\_reg}() may return any error returned by
H A Dunw_set_fpreg.tex57 In addition, \Func{unw\_set\_fpreg}() may return any error returned by
H A Dunw_set_reg.tex58 In addition, \Func{unw\_set\_reg}() may return any error returned by
H A Dunw_get_proc_info_by_ip.tex71 In addition, \Func{unw\_get\_proc\_info}() may return any error
H A Dunw_get_proc_name.tex65 In addition, \Func{unw\_get\_proc\_name}() may return any error
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DAlphabeticIndex.java313 for (ULocale addition : additions) {
314 addIndexExemplars(addition);
326 for (Locale addition : additions) {
327 addIndexExemplars(ULocale.forLocale(addition));
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
H A DAlphabeticIndex.java323 for (ULocale addition : additions) {
324 addIndexExemplars(addition);
337 for (Locale addition : additions) {
338 addIndexExemplars(ULocale.forLocale(addition));
/external/autotest/docs/
H A Dtest-that.md18 In addition to running tests against local device, `test_that` can be used to
/external/tensorflow/tensorflow/contrib/verbs/
H A Dpatch_notes_verbs_with_0_copies.md29 4. Since the sender no longer writes the tensor from/to fixed buffers, we no longer need to schedule the writes using the local/remote status. In addition we no longer rely on the RmdaTensorBuffer members as the source/destination addresses and rkey/lkey. Instead, each RdmaTensorBuffer will hold multiple "Response" objects (one per step-id), from which we derive destination address and rkey. The source address and lkey are always the ones of the source Tensor.
30 5. With the addition of tensor pre-allocation, we noticed there is a large code similarity between sending the first tensor request and re-sending the request in case of meta-data changes. After implementing a common method for tensor pre-allocation, it turned out that implementation becomes much simpler by encapsulating the process of request sending/re-sending, meta-data response callback and content response callback, all in a single "Request" class. The request class holds all the relevant request information, which reduces excessive parameter passing and lambda capturing. This decision is purely for elegance and code simplicity, and we decided to implement it in first stage because it makes the implementation much easier.

Completed in 1660 milliseconds

123