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

1 2 3 4 5 6 7 8 910

  /external/guava/guava-testlib/src/com/google/common/collect/testing/google/
BiMapClearTester.java 34 BiMap<V, K> inv = getMap().inverse(); local
37 assertTrue(inv.isEmpty());
42 BiMap<V, K> inv = getMap().inverse(); local
45 assertTrue(inv.isEmpty());
50 BiMap<V, K> inv = getMap().inverse(); local
53 assertTrue(inv.isEmpty());
58 BiMap<V, K> inv = getMap().inverse(); local
59 inv.clear();
61 assertTrue(inv.isEmpty());
66 BiMap<V, K> inv = getMap().inverse() local
74 BiMap<V, K> inv = getMap().inverse(); local
    [all...]
AbstractBiMapTester.java 65 BiMap<V, K> inv = getMap().inverse(); local
67 inv.entrySet().contains(entry));
69 inv.containsKey(entry.getValue()));
71 inv.containsValue(entry.getKey()));
  /external/google-breakpad/src/third_party/libdisasm/
ia32_invariant.h 7 x86_invariant_t *inv);
ia32_invariant.c 142 unsigned int prefixes, x86_invariant_t *inv) {
160 inv->operands[x].access = (enum x86_op_access)
162 inv->operands[x].flags = (enum x86_op_flags)
209 mode_16, &inv->operands[x]);
214 inv->operands[x].type = op_register;
222 inv->operands[x].type = op_offset;
224 inv->operands[x].flags |= op_signed |
242 inv->operands[x].type =
245 inv->operands[x].type =
248 inv->operands[x].flags |= op_signed
311 x86_invariant_t inv = { {0} }; local
    [all...]
  /external/skia/experimental/svg/model/
SkSVGTransformableNode.cpp 45 SkMatrix inv; local
46 if (!fTransform.value().invert(&inv)) {
50 path->transform(inv);
  /external/skia/src/core/
SkBitmapController.h 45 State* requestBitmap(const SkBitmapProvider& bp, const SkMatrix& inv, SkFilterQuality quality) {
46 return this->requestBitmap(bp, inv, quality, nullptr, 0);
50 virtual State* onRequestBitmap(const SkBitmapProvider&, const SkMatrix& inv, SkFilterQuality,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/profile/impl/
profiler_state.h 42 __state_type inv(__INVALID);
44 &inv, __s, false, __ATOMIC_ACQ_REL,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/profile/impl/
profiler_state.h 42 __state_type inv(__INVALID);
44 &inv, __s, false, __ATOMIC_ACQ_REL,
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/profile/impl/
profiler_state.h 42 __state_type inv(__INVALID);
44 &inv, __s, false, __ATOMIC_ACQ_REL,
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/profile/impl/
profiler_state.h 42 __state_type inv(__INVALID);
44 &inv, __s, false, __ATOMIC_ACQ_REL,
  /prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/profile/impl/
profiler_state.h 42 __state_type inv(__INVALID);
44 &inv, __s, false, __ATOMIC_ACQ_REL,
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/profile/impl/
profiler_state.h 42 __state_type inv(__INVALID);
44 &inv, __s, false, __ATOMIC_ACQ_REL,
  /external/apache-commons-math/src/main/java/org/apache/commons/math/special/
Gamma.java 303 double inv = 1 / (x * x); local
307 return FastMath.log(x) - 0.5 / x - inv * ((1.0 / 12) + inv * (1.0 / 120 - inv / 252));
329 double inv = 1 / (x * x); local
334 return 1 / x + inv / 2 + inv / x * (1.0 / 6 - inv * (1.0 / 30 + inv / 42));
  /frameworks/rs/tests/java_api/VrDemo/src/com/example/android/rs/vr/engine/
Matrix.java 201 double[] inv = new double[16]; local
203 inv[0] = m[5] * m[10] * m[15] -
210 inv[4] = -m[4] * m[10] * m[15] +
217 inv[8] = m[4] * m[9] * m[15] -
224 inv[12] = -m[4] * m[9] * m[14] +
231 inv[1] = -m[1] * m[10] * m[15] +
238 inv[5] = m[0] * m[10] * m[15] -
245 inv[9] = -m[0] * m[9] * m[15] +
252 inv[13] = m[0] * m[9] * m[14] -
259 inv[2] = m[1] * m[6] * m[15] -
    [all...]
  /external/flatbuffers/samples/
sample_binary.cpp 80 auto inv = monster->inventory(); local
81 assert(inv);
82 assert(inv->Get(9) == 9);
83 (void)inv;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
pdeps.py 44 inv = inverse(table)
45 printresults(inv)
124 inv = {}
126 if not inv.has_key(key):
127 inv[key] = []
129 store(inv, item, key)
130 return inv
  /packages/apps/Launcher3/src/com/android/launcher3/
DeviceProfile.java 45 public final InvariantDeviceProfile inv; field in class:DeviceProfile
143 public DeviceProfile(Context context, InvariantDeviceProfile inv,
147 this.inv = inv;
223 DeviceProfile profile = new DeviceProfile(context, inv, mwSize, mwSize, mwSize.x, mwSize.y,
270 float usedHeight = (cellHeightPx * inv.numRows);
282 iconSizePx = (int) (Utilities.pxFromDp(inv.iconSize, dm) * scale);
283 iconTextSizePx = (int) (Utilities.pxFromSp(inv.iconTextSize, dm) * scale);
285 hotseatIconSizePx = (int) (Utilities.pxFromDp(inv.hotseatIconSize, dm) * scale);
327 float usedHeight = folderCellHeightPx * inv.numFolderRows + folderBottomPanelSize
    [all...]
Partner.java 117 public void applyInvariantDeviceProfileOverrides(InvariantDeviceProfile inv, DisplayMetrics dm) {
147 inv.numRows = numRows;
148 inv.numColumns = numColumns;
152 inv.iconSize = iconSize;
  /external/ltp/testcases/kernel/syscalls/epoll_ctl/
epoll_ctl02.c 49 static int inv = -1; variable
63 {&inv, EPOLL_CTL_ADD, &fd[1], &events[1], EBADF},
64 {&epfd, EPOLL_CTL_ADD, &inv, &events[1], EBADF},
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/msp430/
opcode.s 8 inv r10
36 inv r15
44 inv r15
  /external/eigen/test/
prec_inverse_4x4.cpp 21 MatrixType inv = m.inverse(); local
22 double error = double( (m*inv-MatrixType::Identity()).norm() / NumTraits<Scalar>::epsilon() );
43 MatrixType inv = m.inverse(); local
44 double error = double( (m*inv-MatrixType::Identity()).norm() * absdet / NumTraits<Scalar>::epsilon() );
  /external/skia/src/opts/
SkXfermode_opts.h 27 XFERMODE(SrcOut) { return s.approxMulDiv255(d.alphas().inv()); }
28 XFERMODE(SrcOver) { return s + d.approxMulDiv255(s.alphas().inv()); }
34 XFERMODE(SrcATop) { return (s * d.alphas() + d * s.alphas().inv()).div255(); }
37 XFERMODE(Xor) { return (s * d.alphas().inv() + d * s.alphas().inv()).div255(); }
45 // in 8-bit space without overflow. S + (1-S)*D is a touch faster because inv() is cheap.
46 return s + d.approxMulDiv255(s.inv());
48 XFERMODE(Multiply) { return (s * d.alphas().inv() + d * s.alphas().inv() + s*d).div255(); }
73 auto srcover = s + (d * sa.inv()).div255()
    [all...]
  /frameworks/base/tools/preload2/src/com/android/preload/actions/
ShowDataAction.java 50 Map<String, Set<String>> inv = data.invertData(); local
55 add(builder, "Boot classpath:", inv.get(null));
58 for (String k : inv.keySet()) {
61 add(builder, k, inv.get(k));
  /external/skia/src/gpu/effects/
GrGaussianConvolutionFragmentProcessor.cpp 122 SkScalar inv = SkScalarInvert(SkIntToScalar(texture.width())); local
123 pdman.set2f(fBoundsUni, inv * bounds[0], inv * bounds[1]);
125 SkScalar inv = SkScalarInvert(SkIntToScalar(texture.height())); local
127 pdman.set2f(fBoundsUni, 1.0f - (inv * bounds[1]), 1.0f - (inv * bounds[0]));
129 pdman.set2f(fBoundsUni, inv * bounds[1], inv * bounds[0]);
  /prebuilts/go/darwin-x86/src/index/suffixarray/
qsufsort.go 22 // last element, k-1. The group numbers are stored in the inverse slice (inv),
37 inv := initGroups(sa, data)
40 sufSortable := &suffixSortable{sa: sa, inv: inv, h: 1}
55 pk := inv[s] + 1 // pk-1 is last position of unsorted group
70 sa[inv[i]] = i
97 inv := make([]int, len(data))
108 inv[sa[i]] = prevGroup
125 inv[sa[s]] = s
131 return inv
    [all...]

Completed in 623 milliseconds

1 2 3 4 5 6 7 8 910