Searched refs:references (Results 1 - 25 of 125) sorted by relevance

12345

/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
H A DSmaliBaseReferenceList.java58 SmaliClassTypeElement[] references = getReferenceElements();
60 SmaliClassType[] referenceTypes = new SmaliClassType[references.length];
62 for (int i=0; i<references.length; i++) {
63 referenceTypes[i] = references[i].getType();
82 SmaliClassTypeElement[] references = getReferenceElements();
84 String[] referenceNames = new String[references.length];
86 for (int i=0; i<references.length; i++) {
87 referenceNames[i] = references[i].getCanonicalText();
99 SmaliClassTypeElement[] references = getReferenceElements();
101 String[] smaliNames = new String[references
[all...]
/external/nist-sip/java/gov/nist/javax/sip/parser/extensions/
H A DReferencesParser.java17 * @param references the header to parse
19 public ReferencesParser(String references) { argument
20 super(references);
43 References references= new References();
48 references.setCallId(callId);
49 super.parse(references);
50 return references;
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/res/
H A DResourceReferenceResolver.java55 List<String> references = unresolvedReferences.remove(attributeName);
56 if (references == null) {
59 for (String reference : references) {
65 List<String> references = unresolvedReferences.get(attributeName);
66 if (references == null) {
67 references = new ArrayList<String>();
68 unresolvedReferences.put(attributeName, references);
70 references.add(valuePointer);
/external/boringssl/src/crypto/pool/
H A Dinternal.h32 CRYPTO_refcount_t references; member in struct:crypto_buffer_st
H A Dpool.c85 CRYPTO_refcount_inc(&duplicate->references);
107 buf->references = 1;
123 CRYPTO_refcount_inc(&duplicate->references);
149 if (CRYPTO_refcount_dec_and_test_zero(&buf->references)) {
161 if (!CRYPTO_refcount_dec_and_test_zero(&buf->references)) {
168 * zero there are and can never be any more references and thus we can free
185 * references already and so the reference count will never hit zero. */
186 CRYPTO_refcount_inc(&buf->references);
/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/stub/element/
H A DSmaliBaseReferenceListElementType.java55 String[] references = stub.getSmaliTypeNames();
56 dataStream.writeVarInt(references.length);
57 for (String reference: references) {
/external/fio/
H A Dfilelock.c22 unsigned int references; member in struct:fio_filelock
161 ff->references = 0;
178 ff->references++;
200 if (ff->references != 1) {
201 ff->references--;
236 int refs = --ff->references;
/external/boringssl/include/openssl/
H A Dengine.h87 int references; /* dummy – not used. */ member in struct:openssl_method_common_st
H A Dthread.h156 int references; member in struct:__anon625
H A Ddh.h270 CRYPTO_refcount_t references; member in struct:dh_st
/external/boringssl/src/include/openssl/
H A Dengine.h87 int references; /* dummy – not used. */ member in struct:openssl_method_common_st
H A Dthread.h156 int references; member in struct:__anon729
/external/mesa3d/bin/
H A Dget-extra-pick-list.sh33 echo Commit $candidate references $sha
/external/boringssl/src/util/fipstools/testdata/ppc64le-TOCWithOffset/
H A Din.s3 # TOC references may have offsets.
/external/llvm/test/MC/MachO/ARM/
H A Dno-subsections-reloc.s5 @ When not using subsections-via-symbols, references to non-local symbols
/external/boringssl/src/crypto/asn1/
H A Dtasn_utl.c106 CRYPTO_refcount_t *references = asn1_get_references(pval, it); local
107 if (references != NULL) {
108 *references = 1;
113 CRYPTO_refcount_t *references = asn1_get_references(pval, it); local
114 if (references != NULL) {
115 return CRYPTO_refcount_dec_and_test_zero(references);
/external/brotli/research/
H A DREADME.md3 In this directory we publish simple tools to analyze backward reference distance distributions in LZ77 compression. We developed these tools to be able to make more efficient encoding of distances in large-window brotli. In large-window compression the average cost of a backward reference distance is higher, and this may allow for more advanced encoding strategies, such as delta coding or an increase in context size, to bring significant compression density improvements. Our tools visualize the backward references as histogram images, i.e., one pixel in the image shows how many distances of a certain range exist at a certain locality in the data. The human visual system is excellent at pattern detection, so we tried to roughly identify patterns visually before going into more quantitative analysis. These tools can turn out to be useful in development of other LZ77-based compressors and we hope you try them out.
9 This tool generates optimal (match-length-wise) backward references for every position in the input files and stores them in `*.dist` file described below.
17 This tool generates a visualization of the distribution of backward references stored in `*.dist` file. The original file size has to be specified as a second parameter. The output is a grayscale PGM (binary) image.
29 This tool generates a diff PPM (binary) image between two input 8-bit PGM (binary) images. Input images must be of same size. Useful for comparing different backward references distributions for same input file. Normally used for comparison of output images from `draw_histogram` tool.
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DConnectionPool.java295 List<Reference<StreamAllocation>> references = connection.allocations;
296 for (int i = 0; i < references.size(); ) {
297 Reference<StreamAllocation> reference = references.get(i);
307 references.remove(i);
311 if (references.isEmpty()) {
317 return references.size();
/external/clang/utils/
H A DFindSpecRefs14 ('2. Normative references', '2'),
301 ('1.2 Normative references', '1'),
590 ('F Cross references', '1137'),
599 # FIXME: Fix for named spec references
773 def buildRefTree(references):
785 for ref in references:
816 references = []
824 references.extend(list(scanFile(fullpath, filename)))
826 references.extend(list(scanFile(root, root)))
828 refTree = buildRefTree(references)
[all...]
/external/webrtc/webrtc/voice_engine/
H A Dchannel_manager.cc118 // Holds references so that Channels are not destroyed while holding this
120 std::vector<ChannelOwner> references; local
123 references = channels_;
/external/llvm/test/Instrumentation/AddressSanitizer/X86/
H A Dasm_rsp_mem_op.s1 # The test verifies that memory references through %rsp are correctly
/external/boringssl/src/crypto/evp/
H A Devp.c85 ret->references = 1;
103 if (!CRYPTO_refcount_dec_and_test_zero(&pkey->references)) {
112 CRYPTO_refcount_inc(&pkey->references);
/external/stressapptest/src/
H A Ddisk_blocks.cc136 int references = block->GetReferenceCounter(); local
137 if (references == 1)
139 else if (references > 0)
/external/boringssl/src/crypto/dh/
H A Ddh.c86 dh->references = 1;
97 if (!CRYPTO_refcount_dec_and_test_zero(&dh->references)) {
401 CRYPTO_refcount_inc(&dh->references);
/external/boringssl/src/crypto/x509/
H A Dx509cset.c134 CRYPTO_refcount_inc(&crl->references);

Completed in 3849 milliseconds

12345