/frameworks/compile/libbcc/lib/Core/ |
Script.cpp | 23 bool Script::reset(Source &pSource, bool pPreserveCurrent) { 24 if (mSource == &pSource) { 31 mSource = &pSource; 35 bool Script::mergeSource(Source &pSource) { 36 return mSource->merge(pSource);
|
BCCContext.cpp | 56 void BCCContext::addSource(Source &pSource) 57 { mImpl->mOwnSources.insert(&pSource); } 59 void BCCContext::removeSource(Source &pSource) 60 { mImpl->mOwnSources.erase(&pSource); }
|
/external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/spec/ |
PSourceTest.java | 25 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); 82 * PSource(String pSrcName) method testing. Tests that returned value is 87 new PSource(null) [all...] |
/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...] |
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/spec/ |
OAEPParameterSpecTest.java | 28 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...] |
/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/include/bcc/ |
Script.h | 36 Script(Source &pSource) : mSource(&pSource) { } 45 bool reset(Source &pSource, bool pPreserveCurrent = false); 51 bool mergeSource(Source &pSource);
|
BCCContext.h | 42 void addSource(Source &pSource); 43 void removeSource(Source &pSource);
|
Source.h | 73 // Merge the current source with pSource. pSource 75 bool merge(Source &pSource);
|
/libcore/ojluni/src/main/java/javax/crypto/spec/ |
PSource.java | 46 public class PSource { 53 * specified PSource algorithm. 59 protected PSource(String pSrcName) { 61 throw new NullPointerException("pSource algorithm is null"); 66 * Returns the PSource algorithm name. 68 * @return the PSource algorithm name. 80 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() {
|
/external/pdfium/core/src/fxge/win32/ |
fx_win32_print.cpp | 36 FX_BOOL CGdiPrinterDriver::SetDIBits(const CFX_DIBSource* pSource, 44 if (pSource->IsAlphaMask()) { 47 return StretchDIBits(pSource, color, left - pSrcRect->left, 48 top - pSrcRect->top, pSource->GetWidth(), 49 pSource->GetHeight(), &clip_rect, 0, alpha_flag, 52 ASSERT(pSource && !pSource->IsAlphaMask() && pSrcRect); 54 if (pSource->HasAlpha()) { 57 CFX_DIBExtractor temp(pSource); 64 FX_BOOL CGdiPrinterDriver::StretchDIBits(const CFX_DIBSource* pSource, [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);
|
/frameworks/compile/libbcc/lib/Renderscript/ |
RSScript.cpp | 52 RSScript::RSScript(Source &pSource) 53 : Script(pSource), mCompilerVersion(0), 58 RSScript::RSScript(Source &pSource, const CompilerConfig * pCompilerConfig): RSScript(pSource)
|
/libcore/luni/src/test/java/libcore/javax/crypto/spec/ |
AlgorithmParametersTestOAEP.java | 20 import javax.crypto.spec.PSource; 27 super("OAEP", new AlgorithmParameterAsymmetricHelper("RSA"), new OAEPParameterSpec("SHA-1", "MGF1", MGF1ParameterSpec.SHA1, PSource.PSpecified.DEFAULT));
|
/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/pdfium/core/src/fxge/ge/ |
fx_ge_ps.cpp | 324 FX_BOOL CFX_PSRenderer::SetDIBits(const CFX_DIBSource* pSource, 331 CFX_Matrix matrix((FX_FLOAT)(pSource->GetWidth()), 0.0f, 0.0f, 332 -(FX_FLOAT)(pSource->GetHeight()), (FX_FLOAT)(left), 333 (FX_FLOAT)(top + pSource->GetHeight())); 334 return DrawDIBits(pSource, color, &matrix, 0, alpha_flag, pIccTransform); 336 FX_BOOL CFX_PSRenderer::StretchDIBits(const CFX_DIBSource* pSource, 349 return DrawDIBits(pSource, color, &matrix, flags, alpha_flag, pIccTransform); 351 FX_BOOL CFX_PSRenderer::DrawDIBits(const CFX_DIBSource* pSource, 362 if (pSource->HasAlpha()) { 367 if (pSource->IsAlphaMask() && (alpha < 255 || pSource->GetBPP() != 1)) [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/rsa/ |
AlgorithmParametersSpi.java | 10 import javax.crypto.spec.PSource; 63 PSource.PSpecified pSource = (PSource.PSpecified)currentSpec.getPSource(); 65 PKCSObjectIdentifiers.id_pSpecified, new DEROctetString(pSource.getValue())); 125 new PSource.PSpecified(ASN1OctetString.getInstance(oaepP.getPSourceAlgorithm().getParameters()).getOctets()));
|