HomeSort by relevance Sort by last modified time
    Searched full:psource (Results 1 - 25 of 147) sorted by null

1 2 3 4 5 6

  /external/pdfium/xfa/fwl/
cfwl_eventtarget.cpp 17 void CFWL_EventTarget::SetEventSource(CFWL_Widget* pSource) {
18 if (pSource)
19 m_widgets.insert(pSource);
cfwl_eventtarget.h 23 void SetEventSource(CFWL_Widget* pSource);
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/spec/
PSourceTest.java 26 import javax.crypto.spec.PSource;
44 new PSource.PSpecified(null);
50 assertEquals("The PSource.PSpecified DEFAULT value should be byte[0]",
51 0, PSource.PSpecified.DEFAULT.getValue().length);
54 PSource.PSpecified ps = new PSource.PSpecified(p);
69 PSource.PSpecified ps = new PSource.PSpecified(p);
83 * PSource(String pSrcName) method testing. Tests that returned value is
88 new PSource(null) {}
    [all...]
OAEPParameterSpecTest.java 29 import javax.crypto.spec.PSource;
41 * mgfSpec, PSource pSrc) method testing. Tests that NullPointerException
50 PSource pSrc = PSource.PSpecified.DEFAULT;
88 + "PSource.PSpecified.DEFAULT",
90 == PSource.PSpecified.DEFAULT);
100 PSource pSrc = PSource.PSpecified.DEFAULT;
116 PSource pSrc = PSource.PSpecified.DEFAULT
    [all...]
  /hardware/qcom/media/msm8974/mm-video-legacy/vidc/vdec/src/
frameparser.cpp 148 OMX_U8 *pdest = NULL,*psource = NULL, match_found = FALSE, is_byte_match = 0; local
160 psource = source->pBuffer + source->nOffset;
218 parse_additional_start_code(psource,&parsed_length);
222 psource++;
226 if ((*psource & mask_code [3]) == start_code [3])
229 last_byte = *psource;
232 psource++;
261 is_byte_match = ((*psource & mask_code [2]) == start_code [2]);
268 last_byte_h263 = *psource;
274 (*psource & mask_code [3]) == start_code [3]
524 OMX_U8 *pdest = NULL,*psource = NULL; local
    [all...]
  /frameworks/av/media/libstagefright/codecs/common/
cmnMemory.c 58 VO_U32 cmnMemCopy (VO_S32 uID, VO_PTR pDest, VO_PTR pSource, VO_U32 uSize)
62 memcpy (pDest, pSource, uSize);
82 VO_U32 cmnMemMove (VO_S32 uID, VO_PTR pDest, VO_PTR pSource, VO_U32 uSize)
86 memmove (pDest, pSource, uSize);
  /hardware/qcom/media/msm8974/mm-video-v4l2/vidc/vdec/src/
frameparser.cpp 148 OMX_U8 *pdest = NULL,*psource = NULL, match_found = FALSE, is_byte_match = 0; local
159 psource = source->pBuffer + source->nOffset;
213 parse_additional_start_code(psource,&parsed_length);
218 psource++;
223 if ((*psource & mask_code [3]) == start_code [3]) {
225 last_byte = *psource;
228 psource++;
252 is_byte_match = ((*psource & mask_code [2]) == start_code [2]);
257 last_byte_h263 = *psource;
262 (*psource & mask_code [3]) == start_code [3])
481 OMX_U8 *pdest = NULL,*psource = NULL; local
    [all...]
  /hardware/qcom/media/msm8996/mm-video-v4l2/vidc/vdec/src/
frameparser.cpp 148 OMX_U8 *pdest = NULL,*psource = NULL, match_found = FALSE, is_byte_match = 0; local
159 psource = source->pBuffer + source->nOffset;
213 parse_additional_start_code(psource,&parsed_length);
218 psource++;
223 if ((*psource & mask_code [3]) == start_code [3]) {
225 last_byte = *psource;
228 psource++;
252 is_byte_match = ((*psource & mask_code [2]) == start_code [2]);
257 last_byte_h263 = *psource;
262 (*psource & mask_code [3]) == start_code [3])
481 OMX_U8 *pdest = NULL,*psource = NULL; local
    [all...]
  /hardware/qcom/media/msm8998/mm-video-v4l2/vidc/vdec/src/
frameparser.cpp 148 OMX_U8 *pdest = NULL,*psource = NULL, match_found = FALSE, is_byte_match = 0; local
159 psource = source->pBuffer + source->nOffset;
213 parse_additional_start_code(psource,&parsed_length);
218 psource++;
223 if ((*psource & mask_code [3]) == start_code [3]) {
225 last_byte = *psource;
228 psource++;
252 is_byte_match = ((*psource & mask_code [2]) == start_code [2]);
257 last_byte_h263 = *psource;
262 (*psource & mask_code [3]) == start_code [3])
481 OMX_U8 *pdest = NULL,*psource = NULL; local
    [all...]
  /cts/tests/tests/opengl/libopengltest/
common.cpp 23 GLuint loadShader(GLenum shaderType, const char* pSource) {
25 glShaderSource(shader, 1, &pSource, NULL);
common.h 24 GLuint loadShader(GLenum shaderType, const char* pSource);
  /frameworks/compile/libbcc/lib/
BCCContext.cpp 55 void BCCContext::addSource(Source &pSource)
56 { mImpl->mOwnSources.insert(&pSource); }
58 void BCCContext::removeSource(Source &pSource)
59 { mImpl->mOwnSources.erase(&pSource); }
Script.cpp 31 Script::Script(Source *pSource)
32 : mSource(pSource),
90 bool Script::mergeSource(Source &pSource) { return mSource->merge(pSource); }
  /external/pdfium/core/fpdfapi/font/
cpdf_type3char.cpp 32 std::unique_ptr<CFX_DIBSource> pSource =
34 if (pSource)
35 m_pBitmap = pSource->Clone();
  /libcore/ojluni/src/main/java/javax/crypto/spec/
PSource.java 43 public class PSource {
50 * specified PSource algorithm.
56 protected PSource(String pSrcName) {
58 throw new NullPointerException("pSource algorithm is null");
63 * Returns the PSource algorithm name.
65 * @return the PSource algorithm name.
77 public static final class PSpecified extends PSource {
OAEPParameterSpec.java 68 * source of encoding input -- PSource.PSpecified.DEFAULT
71 * @see PSource
82 private PSource pSrc = PSource.PSpecified.DEFAULT;
115 PSource pSrc) {
165 public PSource getPSource() {
  /libcore/luni/src/test/java/libcore/javax/crypto/spec/
AlgorithmParametersTestOAEP.java 26 import javax.crypto.spec.PSource;
99 super("OAEP", new AlgorithmParameterAsymmetricHelper("RSA"), new OAEPParameterSpec("SHA-1", "MGF1", MGF1ParameterSpec.SHA1, PSource.PSpecified.DEFAULT));
113 "SHA-1", "MGF1", MGF1ParameterSpec.SHA1, PSource.PSpecified.DEFAULT);
121 new PSource.PSpecified(new byte[] {1, 2, 3, 4}));
129 "SHA-1", "MGF1", MGF1ParameterSpec.SHA512, PSource.PSpecified.DEFAULT);
145 Arrays.equals(PSource.PSpecified.DEFAULT.getValue(),
146 ((PSource.PSpecified) producedSpec.getPSource()).getValue()));
158 Arrays.equals(PSource.PSpecified.DEFAULT.getValue(),
159 ((PSource.PSpecified) producedSpec.getPSource()).getValue()));
172 ((PSource.PSpecified) producedSpec.getPSource()).getValue()))
    [all...]
  /frameworks/av/media/libstagefright/codecs/common/include/
cmnMemory.h 64 * \param pSource [in] address of source memory
68 VO_U32 cmnMemCopy (VO_S32 uID, VO_PTR pDest, VO_PTR pSource, VO_U32 uSize);
93 * \param pSource [in] address of source memory
97 VO_U32 cmnMemMove (VO_S32 uID, VO_PTR pDest, VO_PTR pSource, VO_U32 uSize);
voMem.h 46 VO_U32 (VO_API * Copy) (VO_S32 uID, VO_PTR pDest, VO_PTR pSource, VO_U32 uSize);
49 VO_U32 (VO_API * Move) (VO_S32 uID, VO_PTR pDest, VO_PTR pSource, VO_U32 uSize);
  /external/pdfium/core/fxge/win32/
fx_win32_print.cpp 70 bool CGdiPrinterDriver::SetDIBits(const CFX_DIBSource* pSource,
76 if (pSource->IsAlphaMask()) {
79 return StretchDIBits(pSource, color, left - pSrcRect->left,
80 top - pSrcRect->top, pSource->GetWidth(),
81 pSource->GetHeight(), &clip_rect, 0,
84 ASSERT(pSource && !pSource->IsAlphaMask() && pSrcRect);
86 if (pSource->HasAlpha())
89 CFX_DIBExtractor temp(pSource);
97 bool CGdiPrinterDriver::StretchDIBits(const CFX_DIBSource* pSource,
    [all...]
cfx_psrenderer.cpp 341 bool CFX_PSRenderer::SetDIBits(const CFX_DIBSource* pSource,
346 CFX_Matrix matrix((FX_FLOAT)(pSource->GetWidth()), 0.0f, 0.0f,
347 -(FX_FLOAT)(pSource->GetHeight()), (FX_FLOAT)(left),
348 (FX_FLOAT)(top + pSource->GetHeight()));
349 return DrawDIBits(pSource, color, &matrix, 0);
352 bool CFX_PSRenderer::StretchDIBits(const CFX_DIBSource* pSource,
363 return DrawDIBits(pSource, color, &matrix, flags);
366 bool CFX_PSRenderer::DrawDIBits(const CFX_DIBSource* pSource,
375 if (pSource->HasAlpha()) {
379 if (pSource->IsAlphaMask() && (alpha < 255 || pSource->GetBPP() != 1)
    [all...]
  /frameworks/compile/libbcc/include/bcc/
BCCContext.h 42 void addSource(Source &pSource);
43 void removeSource(Source &pSource);
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStoreRSACipherSpi.java 40 import javax.crypto.spec.PSource;
232 PSource pSource = spec.getPSource();
233 if (!(pSource instanceof PSource.PSpecified)) {
235 "Unsupported source of encoding input P: " + pSource
236 + ". Only pSpecifiedEmpty (PSource.PSpecified.DEFAULT) supported");
238 PSource.PSpecified pSourceSpecified = (PSource.PSpecified) pSource;
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/
CipherSpi.java 22 import javax.crypto.spec.PSource;
96 cipher = new OAEPEncoding(new RSABlindedEngine(), digest, ((PSource.PSpecified)pSpec.getPSource()).getValue());
214 initFromSpec(new OAEPParameterSpec("MD5", "MGF1", new MGF1ParameterSpec("MD5"), PSource.PSpecified.DEFAULT));
226 initFromSpec(new OAEPParameterSpec("SHA-224", "MGF1", new MGF1ParameterSpec("SHA-224"), PSource.PSpecified.DEFAULT));
230 initFromSpec(new OAEPParameterSpec("SHA-256", "MGF1", MGF1ParameterSpec.SHA256, PSource.PSpecified.DEFAULT));
234 initFromSpec(new OAEPParameterSpec("SHA-384", "MGF1", MGF1ParameterSpec.SHA384, PSource.PSpecified.DEFAULT));
238 initFromSpec(new OAEPParameterSpec("SHA-512", "MGF1", MGF1ParameterSpec.SHA512, PSource.PSpecified.DEFAULT));
243 // initFromSpec(new OAEPParameterSpec("SHA3-224", "MGF1", new MGF1ParameterSpec("SHA3-224"), PSource.PSpecified.DEFAULT));
247 // initFromSpec(new OAEPParameterSpec("SHA3-256", "MGF1", new MGF1ParameterSpec("SHA3-256"), PSource.PSpecified.DEFAULT));
251 // initFromSpec(new OAEPParameterSpec("SHA3-384", "MGF1", new MGF1ParameterSpec("SHA3-384"), PSource.PSpecified.DEFAULT))
    [all...]
AlgorithmParametersSpi.java 10 import javax.crypto.spec.PSource;
64 PSource.PSpecified pSource = (PSource.PSpecified)currentSpec.getPSource();
66 PKCSObjectIdentifiers.id_pSpecified, new DEROctetString(pSource.getValue()));
131 new PSource.PSpecified(ASN1OctetString.getInstance(oaepP.getPSourceAlgorithm().getParameters()).getOctets()));

Completed in 569 milliseconds

1 2 3 4 5 6