HomeSort by relevance Sort by last modified time
    Searched defs:product (Results 126 - 150 of 283) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
AbstractRealVector.java 724 RealMatrix product; local
726 product = new OpenMapRealMatrix(this.getDimension(), v.getDimension());
728 product = new Array2DRowRealMatrix(this.getDimension(), v.getDimension());
736 product.setEntry(thisE.getIndex(), otherE.getIndex(),
741 return product;
  /external/kernel-headers/original/uapi/linux/
input.h 46 __u16 product; member in struct:input_id
  /external/skia/tests/
MathTest.cpp 371 int product = (c * a + 255); local
372 int expected_ceiling = (product + (product >> 8)) >> 8;
  /external/skqp/tests/
MathTest.cpp 371 int product = (c * a + 255); local
372 int expected_ceiling = (product + (product >> 8)) >> 8;
  /external/tensorflow/tensorflow/cc/gradients/
math_grad.cc 717 // The product of all entries in a tensor's shape is the total
838 // The gradient can be expressed by dividing the product by each entry of
1049 auto product = op.output(0); local
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
dot_op_emitter.cc 81 // Computes a dot product between "[M,K]{0,1} lhs" with a [K,1] vector (the
289 llvm::Value* product = vsl_.Mul(
301 product),
304 vsl_.StoreScalar(product, result_, scalar_row);
310 vsl_.Add(vsl_.LoadScalar(result_, scalar_row), product),
317 // Computes a dot product between "[M,K]{1,0} lhs" with a [K,1] vector (the
514 llvm::Value* product =
518 (*scalar_accumulators)[r].Set(vsl_.Add(old_value, product));
740 // in a vector dot product producing a scalar.
789 // dot product result as we accumulate it within the reduction loop. After th
840 llvm::Value* product = ir_builder_->CreateFMul(lhs_element, rhs_element); local
    [all...]
ir_emitter.cc 1132 llvm::Value* product = ir_builder_.CreateFMul( local
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
ir_emitter.cc 488 // for both LHS and RHS. This results in a vector dot product producing a
522 // dot product result as we accumulate it within the reduction loop. After the
566 llvm::Value* product = ir_builder_.CreateFMul(lhs_element, rhs_element); local
567 updated_accum = ir_builder_.CreateFAdd(accum, product);
    [all...]
  /frameworks/av/media/libmedia/
MediaProfiles.cpp 478 int product = mCamcorderProfiles[i]->mVideoCodec->mFrameWidth * local
506 if ((j % 2 == 0 && product > info->mResolutionProduct) || // low
507 (j % 2 != 0 && product < info->mResolutionProduct)) { // high
535 info->mResolutionProduct = product;
    [all...]
  /frameworks/base/tools/aapt2/
ResourceParser.cpp 95 std::string product; member in struct:aapt::ParsedResource
149 if (!table->AddResourceWithId(res->name, res->id, res->config, res->product,
451 // Extract the product name if it exists.
452 if (Maybe<StringPiece> maybe_product = xml::FindNonEmptyAttribute(parser, "product")) {
453 parsed_resource.product = maybe_product.value().to_string();
456 // Parse the resource regardless of product.
472 << "' was filtered out but no product variant remains");
    [all...]
  /libcore/ojluni/src/main/java/sun/misc/
FDBigInteger.java 737 * @param dst The product array.
1346 long product = (src[i] & LONG_MASK) * 10L + carry; local
1371 long product = (src[i] & LONG_MASK) * val + carry; local
1398 long product = v * (src[j] & LONG_MASK) + carry; local
1406 long product = (dst[j + 1] & LONG_MASK) + v * (src[j] & LONG_MASK) + carry; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
bytearrayobject.c 1569 Py_ssize_t count, i, product; local
1822 Py_ssize_t count, product; local
1889 Py_ssize_t count, offset, product; local
    [all...]
stringobject.c 2361 Py_ssize_t count, i, product; local
2613 Py_ssize_t count, product; local
2679 Py_ssize_t count, offset, product; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
bytearrayobject.c 1565 Py_ssize_t count, i, product; local
1818 Py_ssize_t count, product; local
1885 Py_ssize_t count, offset, product; local
    [all...]
longobject.c 2942 PyLongObject *product; local
    [all...]
stringobject.c 2342 Py_ssize_t count, i, product; local
2594 Py_ssize_t count, product; local
2660 Py_ssize_t count, offset, product; local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineRenderToImageTests.cpp 132 inline VkDeviceSize product (const IVec4& v) function in namespace:vkt::pipeline::__anon17760
    [all...]
  /external/libcups/cups/
ppd.h 315 char *product; /* Product name (from PS RIP/interpreter) */ member in struct:ppd_file_s
  /external/python/cpython2/Objects/
bytearrayobject.c 1574 Py_ssize_t count, i, product; local
1827 Py_ssize_t count, product; local
1894 Py_ssize_t count, offset, product; local
    [all...]
  /frameworks/support/room/integration-tests/testapp/src/androidTest/java/androidx/room/integration/testapp/test/
SimpleEntityReadWriteTest.java 49 import androidx.room.integration.testapp.vo.Product;
98 Product product = new Product(1, null); local
101 mProductDao.insert(product);
  /system/core/fastboot/
fastboot.cpp 127 { "product", "product.img", "product.sig", "product", true, false },
659 // "require product=alpha|beta|gamma"
661 // "require-for-product:gamma version-bootloader=istanbul|constantinople"
665 const char* product = ""; local
672 } else if (!strncmp(name, "require-for-product:", 20)) {
673 // Get the product and point name past it
674 product = name + 20
    [all...]
  /cts/tests/camera/src/android/hardware/cts/
CameraTest.java 1279 int product = preferred.width * preferred.height; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Objects/
longobject.c 2942 PyLongObject *product; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Objects/
longobject.c 2956 PyLongObject *product; local
    [all...]
  /external/libdrm/
xf86drm.c 3377 unsigned int vendor, product; local
    [all...]

Completed in 2026 milliseconds

1 2 3 4 56 7 8 91011>>