HomeSort by relevance Sort by last modified time
    Searched defs:inverse (Results 1 - 25 of 32) sorted by null

1 2

  /external/iptables/include/linux/netfilter_ipv4/
ipt_connlimit.h 8 int inverse; member in struct:ipt_connlimit_info
ipt_rpc.h 28 int inverse; member in struct:ipt_rpc_info
  /external/guava/src/com/google/common/collect/
BiMap.java 29 * support an "inverse view", which is another bimap containing the same entries
93 * Returns the inverse view of this bimap, which maps each of this bimap's
98 * order of a bimap and that of its inverse.
100 * @return the inverse view of this bimap
102 BiMap<V, K> inverse(); method in interface:BiMap
RegularImmutableBiMap.java 30 final transient ImmutableBiMap<V, K> inverse; field in class:RegularImmutableBiMap
40 this.inverse = new RegularImmutableBiMap<V, K>(backwardMap, this);
44 ImmutableBiMap<V, K> inverse) {
46 this.inverse = inverse;
53 @Override public ImmutableBiMap<V, K> inverse() { method in class:RegularImmutableBiMap
54 return inverse;
AbstractBiMap.java 50 private transient AbstractBiMap<V, K> inverse; field in class:AbstractBiMap
57 /** Private constructor for inverse bimap. */
60 inverse = forward;
73 checkState(inverse == null);
78 inverse = new Inverse<V, K>(backward, this);
81 void setInverse(AbstractBiMap<V, K> inverse) {
82 this.inverse = inverse;
88 return inverse.containsKey(value)
153 public BiMap<V, K> inverse() { method in class:AbstractBiMap
    [all...]
ImmutableBiMap.java 27 * not permit null keys or values. An {@code ImmutableBiMap} and its inverse
213 * <p>The inverse of an {@code ImmutableBiMap} is another
216 public abstract ImmutableBiMap<V, K> inverse(); method in class:ImmutableBiMap
223 return inverse().containsKey(value);
243 return inverse().keySet();
281 @Override public ImmutableBiMap<Object, Object> inverse() { method in class:ImmutableBiMap.EmptyBiMap
295 * for keeping the bimap and its inverse in sync during serialization, the way
  /external/webkit/WebCore/bindings/js/
JSSVGMatrixCustom.cpp 51 JSValue JSSVGMatrix::inverse(ExecState* exec, const ArgList&) function in class:WebCore::JSSVGMatrix
56 JSValue result = toJS(exec, globalObject(), JSSVGStaticPODTypeWrapper<AffineTransform>::create(imp.inverse()).get(), context);
  /external/webkit/WebCore/css/
WebKitCSSMatrix.cpp 107 PassRefPtr<WebKitCSSMatrix> WebKitCSSMatrix::inverse(ExceptionCode& ec) const function in class:WebCore::WebKitCSSMatrix
114 return WebKitCSSMatrix::create(m_matrix.inverse());
  /external/skia/tests/
MatrixTest.cpp 50 SkMatrix mat, inverse, iden1, iden2; local
54 mat.invert(&inverse);
55 iden1.setConcat(mat, inverse);
59 mat.invert(&inverse);
60 iden1.setConcat(mat, inverse);
65 mat.invert(&inverse);
66 iden1.setConcat(mat, inverse);
73 mat.invert(&inverse);
74 iden1.setConcat(mat, inverse);
76 iden2.setConcat(inverse, mat)
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/encodings/
ISO9796d1Encoding.java 21 private static byte[] inverse = { 0x8, 0xf, 0x6, 0x1, 0x5, 0x2, 0xb, 0xc, field in class:ISO9796d1Encoding
211 block[block.length - 1] = (byte)(((block[block.length - 1] & 0xff) >>> 4) | ((inverse[(block[block.length - 2] & 0xff) >> 4]) << 4));
  /external/speex/libspeex/
_kiss_fft_guts.h 33 int inverse; member in struct:kiss_fft_state
  /external/freetype/src/autofit/
afloader.c 106 FT_Matrix inverse; local
112 inverse = loader->trans_matrix;
113 FT_Matrix_Invert( &inverse );
114 FT_Vector_Transform( &loader->trans_delta, &inverse );
  /external/iproute2/netem/
maketable.c 7 * From this, create the inverse distribution table used to approximate
85 /* Since entries in the inverse are scaled by TABLEFACTOR, and can't be bigger
138 short *inverse; local
141 inverse = (short *)malloc(inversesize*sizeof(short));
143 inverse[i] = MINSHORT;
152 inverse[inverseindex] = inversevalue;
154 return inverse;
203 short *inverse; local
228 inverse = inverttable(table, TABLESIZE, DISTTABLESIZE, total);
229 interpolatetable(inverse, TABLESIZE)
    [all...]
  /external/webkit/WebCore/platform/graphics/transforms/
AffineTransform.cpp 132 AffineTransform AffineTransform::inverse() const function in class:WebCore::AffineTransform
TransformationMatrix.cpp 62 // inverse(original_matrix, inverse_matrix)
64 // calculate the inverse of a 4x4 matrix
193 static bool inverse(const TransformationMatrix::Matrix4& matrix, TransformationMatrix::Matrix4& result) function in namespace:WebCore
200 // then the inverse matrix is not unique.
206 // Scale the adjoint matrix to get the inverse
314 // rightHandSide by the inverse. (This is the easiest way, not
317 inverse(perspectiveMatrix, inversePerspectiveMatrix);
524 // inverse transform to find the corresponding point in the source
963 TransformationMatrix TransformationMatrix::inverse() const function in class:WebCore::TransformationMatrix
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/
LSDocumentBuilderFactory.java 116 private final boolean inverse; field in class:LSDocumentBuilderFactory.LSParameterStrategy
122 * @param inverse if true, DOMConfiguration value is the inverse
125 public LSParameterStrategy(String lsParameter, boolean inverse) {
127 this.inverse = inverse;
167 if (inverse) {
181 if (inverse) {
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Path.java 96 FillType(int rule, boolean inverse) {
98 this.inverse = inverse;
102 final boolean inverse; field in class:Path.FillType
126 * Returns true if the filltype is one of the INVERSE variants
128 * @return true if the filltype is one of the INVERSE variants
131 return mFillType.inverse;
135 * Toggles the INVERSE state of the filltype
  /external/chromium/third_party/icu/source/tools/genuca/
genuca.cpp 17 * internal format for UCA table as well as inverse UCA table.
404 fprintf(stdout, "Writing out inverse UCA table: %s%c%s.%s\n", outputDir, U_FILE_SEP_CHAR,
1053 InverseUCATableHeader *inverse = assembleInverseTable(status); local
    [all...]
  /external/icu4c/tools/genuca/
genuca.cpp 17 * internal format for UCA table as well as inverse UCA table.
404 fprintf(stdout, "Writing out inverse UCA table: %s%c%s.%s\n", outputDir, U_FILE_SEP_CHAR,
1099 InverseUCATableHeader *inverse = assembleInverseTable(status); local
    [all...]
  /external/skia/src/core/
SkScalerContext.cpp 545 SkMatrix matrix, inverse; local
548 matrix.invert(&inverse);
549 path.transform(inverse, &localPath);
SkCanvas.cpp 971 SkMatrix inverse; local
973 if (!fMCRec->fMatrix->invert(&inverse)) {
990 inverse.mapRect(bounds, r);
    [all...]
  /external/skia/src/gl/
SkGLDevice.cpp 192 SkMatrix inverse; local
193 if (localM.invert(&inverse)) {
194 matrix.preConcat(inverse);
225 SkMatrix inverse; local
226 if (draw.fMatrix->invert(&inverse)) {
227 inverse.mapRect(&r);
  /external/skia/src/effects/
SkGradientShader.cpp 341 const SkMatrix& inverse = this->getTotalInverse(); local
343 if (!fDstToIndex.setConcat(fPtsToUnit, inverse)) {
    [all...]
  /external/srec/srec/include/
pre_desc.h 156 imeldata **invmat; /* inverse transformation matrix */
157 int inv_shift; /* inverse Imelda scale factor (in shifts) */
158 covdata **inverse; /* inverse linear transformation matrix, PMC or RN */ member in struct:__anon7606
184 imeldata **pmc_fixinv; /* inverse ENC matrix */
186 covdata **pmc_inverse; /* inverse ENC matrix in float */
  /cts/tools/signature-tools/lib/
antlr-2.7.7.jar 

Completed in 524 milliseconds

1 2