Home
last modified time | relevance | path

Searched full:ref (Results 1 – 25 of 10123) sorted by relevance

12345678910>>...405

/external/cronet/third_party/libxml/fuzz/seed_corpus/
D9de04ffa9771c61b055b3a79ab8114e36c5bc8527 <ref name="set"/>
8 <ref name="book"/>
9 <ref name="chapter"/>
10 <ref name="appendix"/>
11 <ref name="article"/>
12 <ref name="part"/>
13 <ref name="reference"/>
14 <ref name="refentry"/>
15 <ref name="section"/>
16 <ref name="sect1"/>
[all …]
Dfbff3217c31fb539f0569beb0d664343ede5cc406 <ref name="pattern"/>
16 <ref name="open-name-class"/>
18 <ref name="common-atts"/>
19 <ref name="open-patterns"/>
22 <ref name="common-atts"/>
27 <ref name="open-name-class"/>
30 <ref name="other"/>
32 <ref name="pattern"/>
37 <ref name="common-atts"/>
38 <ref name="open-patterns"/>
[all …]
/external/libxml2/test/relaxng/
Ddocbook.rng7 <ref name="set"/>
8 <ref name="book"/>
9 <ref name="chapter"/>
10 <ref name="appendix"/>
11 <ref name="article"/>
12 <ref name="part"/>
13 <ref name="reference"/>
14 <ref name="refentry"/>
15 <ref name="section"/>
16 <ref name="sect1"/>
[all …]
DtutorA.rng6 <ref name="pattern"/>
16 <ref name="open-name-class"/>
18 <ref name="common-atts"/>
19 <ref name="open-patterns"/>
22 <ref name="common-atts"/>
27 <ref name="open-name-class"/>
30 <ref name="other"/>
32 <ref name="pattern"/>
37 <ref name="common-atts"/>
38 <ref name="open-patterns"/>
[all …]
/external/ComputeLibrary/docs/user_guide/
Drelease_version_and_change_log.dox54 - Add new flag @ref ITensorInfo::lock_paddings() to tensors to prevent extending tensor paddings.
96 - @ref CLDepthwiseConvolutionLayerNativeKernel
124 - Inclusive language adjustment. Please refer to @ref S5_0_inc_lang for details.
139 - @ref NEFuseBatchNormalizationKernel
140 - @ref NEL2NormalizeLayerKernel
146 - Inclusive language adjustment. Please refer to @ref S5_0_inc_lang for details.
148 - @ref CLScale
149 - @ref CLGEMM
150 - @ref CLDepthwiseConvolutionLayer
165 - @ref NEBoundingBoxTransformKernel
[all …]
/external/e2fsprogs/tests/f_expand/
Dexpect.1.gz
/external/protobuf/csharp/src/Google.Protobuf/
DParsingPrimitivesWrappers.cs52 …internal static float? ReadFloatWrapperLittleEndian(ref ReadOnlySpan<byte> buffer, ref ParserInter… in ReadFloatWrapperLittleEndian()
68 return ReadFloatWrapperSlow(ref buffer, ref state); in ReadFloatWrapperLittleEndian()
71 return ParsingPrimitives.ParseFloat(ref buffer, ref state); in ReadFloatWrapperLittleEndian()
75 return ReadFloatWrapperSlow(ref buffer, ref state); in ReadFloatWrapperLittleEndian()
79 …internal static float? ReadFloatWrapperSlow(ref ReadOnlySpan<byte> buffer, ref ParserInternalState… in ReadFloatWrapperSlow()
81 int length = ParsingPrimitives.ParseLength(ref buffer, ref state); in ReadFloatWrapperSlow()
91 if (ParsingPrimitives.ParseTag(ref buffer, ref state) == 13) in ReadFloatWrapperSlow()
93 result = ParsingPrimitives.ParseFloat(ref buffer, ref state); in ReadFloatWrapperSlow()
97 ParsingPrimitivesMessages.SkipLastField(ref buffer, ref state); in ReadFloatWrapperSlow()
104 …internal static double? ReadDoubleWrapperLittleEndian(ref ReadOnlySpan<byte> buffer, ref ParserInt… in ReadDoubleWrapperLittleEndian()
[all …]
DWritingPrimitives.cs65 … public static void WriteDouble(ref Span<byte> buffer, ref WriterInternalState state, double value) in WriteDouble()
67 … WriteRawLittleEndian64(ref buffer, ref state, (ulong)BitConverter.DoubleToInt64Bits(value)); in WriteDouble()
73 …public static unsafe void WriteFloat(ref Span<byte> buffer, ref WriterInternalState state, float v… in WriteFloat()
80 Unsafe.WriteUnaligned(ref MemoryMarshal.GetReference(floatSpan), value); in WriteFloat()
90 WriteFloatSlowPath(ref buffer, ref state, value); in WriteFloat()
95 …private static unsafe void WriteFloatSlowPath(ref Span<byte> buffer, ref WriterInternalState state… in WriteFloatSlowPath()
101 Unsafe.WriteUnaligned(ref MemoryMarshal.GetReference(floatSpan), value); in WriteFloatSlowPath()
107 WriteRawByte(ref buffer, ref state, floatSpan[0]); in WriteFloatSlowPath()
108 WriteRawByte(ref buffer, ref state, floatSpan[1]); in WriteFloatSlowPath()
109 WriteRawByte(ref buffer, ref state, floatSpan[2]); in WriteFloatSlowPath()
[all …]
DParsingPrimitives.cs63 public static int ParseLength(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state) in ParseLength()
65 return (int)ParseRawVarint32(ref buffer, ref state); in ParseLength()
72 public static uint ParseTag(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state) in ParseTag()
105 state.lastTag = ParsingPrimitives.ParseRawVarint32(ref buffer, ref state); in ParseTag()
111 if (SegmentedBufferHelper.IsAtEnd(ref buffer, ref state)) in ParseTag()
117 state.lastTag = ParsingPrimitives.ParseRawVarint32(ref buffer, ref state); in ParseTag()
132 …public static bool MaybeConsumeTag(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state, u… in MaybeConsumeTag()
134 if (PeekTag(ref buffer, ref state) == tag) in MaybeConsumeTag()
147 public static uint PeekTag(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state) in PeekTag()
155 state.nextTag = ParseTag(ref buffer, ref state); in PeekTag()
[all …]
/external/cronet/third_party/protobuf/csharp/src/Google.Protobuf/
DParsingPrimitivesWrappers.cs52 …internal static float? ReadFloatWrapperLittleEndian(ref ReadOnlySpan<byte> buffer, ref ParserInter… in ReadFloatWrapperLittleEndian()
68 return ReadFloatWrapperSlow(ref buffer, ref state); in ReadFloatWrapperLittleEndian()
71 return ParsingPrimitives.ParseFloat(ref buffer, ref state); in ReadFloatWrapperLittleEndian()
75 return ReadFloatWrapperSlow(ref buffer, ref state); in ReadFloatWrapperLittleEndian()
79 …internal static float? ReadFloatWrapperSlow(ref ReadOnlySpan<byte> buffer, ref ParserInternalState… in ReadFloatWrapperSlow()
81 int length = ParsingPrimitives.ParseLength(ref buffer, ref state); in ReadFloatWrapperSlow()
91 if (ParsingPrimitives.ParseTag(ref buffer, ref state) == 13) in ReadFloatWrapperSlow()
93 result = ParsingPrimitives.ParseFloat(ref buffer, ref state); in ReadFloatWrapperSlow()
97 ParsingPrimitivesMessages.SkipLastField(ref buffer, ref state); in ReadFloatWrapperSlow()
104 …internal static double? ReadDoubleWrapperLittleEndian(ref ReadOnlySpan<byte> buffer, ref ParserInt… in ReadDoubleWrapperLittleEndian()
[all …]
DWritingPrimitives.cs65 … public static void WriteDouble(ref Span<byte> buffer, ref WriterInternalState state, double value) in WriteDouble()
67 … WriteRawLittleEndian64(ref buffer, ref state, (ulong)BitConverter.DoubleToInt64Bits(value)); in WriteDouble()
73 …public static unsafe void WriteFloat(ref Span<byte> buffer, ref WriterInternalState state, float v… in WriteFloat()
80 Unsafe.WriteUnaligned(ref MemoryMarshal.GetReference(floatSpan), value); in WriteFloat()
90 WriteFloatSlowPath(ref buffer, ref state, value); in WriteFloat()
95 …private static unsafe void WriteFloatSlowPath(ref Span<byte> buffer, ref WriterInternalState state… in WriteFloatSlowPath()
101 Unsafe.WriteUnaligned(ref MemoryMarshal.GetReference(floatSpan), value); in WriteFloatSlowPath()
107 WriteRawByte(ref buffer, ref state, floatSpan[0]); in WriteFloatSlowPath()
108 WriteRawByte(ref buffer, ref state, floatSpan[1]); in WriteFloatSlowPath()
109 WriteRawByte(ref buffer, ref state, floatSpan[2]); in WriteFloatSlowPath()
[all …]
DParsingPrimitives.cs63 public static int ParseLength(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state) in ParseLength()
65 return (int)ParseRawVarint32(ref buffer, ref state); in ParseLength()
72 public static uint ParseTag(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state) in ParseTag()
105 state.lastTag = ParsingPrimitives.ParseRawVarint32(ref buffer, ref state); in ParseTag()
111 if (SegmentedBufferHelper.IsAtEnd(ref buffer, ref state)) in ParseTag()
117 state.lastTag = ParsingPrimitives.ParseRawVarint32(ref buffer, ref state); in ParseTag()
132 …public static bool MaybeConsumeTag(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state, u… in MaybeConsumeTag()
134 if (PeekTag(ref buffer, ref state) == tag) in MaybeConsumeTag()
147 public static uint PeekTag(ref ReadOnlySpan<byte> buffer, ref ParserInternalState state) in PeekTag()
155 state.nextTag = ParseTag(ref buffer, ref state); in PeekTag()
[all …]
/external/tensorflow/tensorflow/python/ops/
Dstate_ops.py113 def is_variable_initialized(ref, name=None): argument
119 ref: A mutable `Tensor`.
126 if ref.dtype._is_ref_dtype:
127 return gen_state_ops.is_variable_initialized(ref=ref, name=name)
129 return ref.is_initialized(name=name)
133 def assign_sub(ref, value, use_locking=None, name=None): argument
134 """Update `ref` by subtracting `value` from it.
136 This operation outputs `ref` after the update is done.
138 Unlike `tf.math.subtract`, this op does not broadcast. `ref` and `value`
142 ref: A mutable `Tensor`. Must be one of the following types: `float32`,
[all …]
/external/libaom/aom_dsp/arm/
Dhighbd_sse_neon.c17 const uint16_t *ref, in highbd_sse_8x1_init_neon() argument
21 uint16x8_t r = vld1q_u16(ref); in highbd_sse_8x1_init_neon()
31 static INLINE void highbd_sse_8x1_neon(const uint16_t *src, const uint16_t *ref, in highbd_sse_8x1_neon() argument
35 uint16x8_t r = vld1q_u16(ref); in highbd_sse_8x1_neon()
46 const uint16_t *ref, int ref_stride, in highbd_sse_128xh_neon() argument
49 highbd_sse_8x1_init_neon(src + 0 * 8, ref + 0 * 8, &sse[0], &sse[1]); in highbd_sse_128xh_neon()
50 highbd_sse_8x1_init_neon(src + 1 * 8, ref + 1 * 8, &sse[2], &sse[3]); in highbd_sse_128xh_neon()
51 highbd_sse_8x1_init_neon(src + 2 * 8, ref + 2 * 8, &sse[4], &sse[5]); in highbd_sse_128xh_neon()
52 highbd_sse_8x1_init_neon(src + 3 * 8, ref + 3 * 8, &sse[6], &sse[7]); in highbd_sse_128xh_neon()
53 highbd_sse_8x1_init_neon(src + 4 * 8, ref + 4 * 8, &sse[8], &sse[9]); in highbd_sse_128xh_neon()
[all …]
Dsse_neon_dotprod.c17 static INLINE void sse_16x1_neon_dotprod(const uint8_t *src, const uint8_t *ref, in sse_16x1_neon_dotprod() argument
20 uint8x16_t r = vld1q_u8(ref); in sse_16x1_neon_dotprod()
27 static INLINE void sse_8x1_neon_dotprod(const uint8_t *src, const uint8_t *ref, in sse_8x1_neon_dotprod() argument
30 uint8x8_t r = vld1_u8(ref); in sse_8x1_neon_dotprod()
38 const uint8_t *ref, int ref_stride, in sse_4x2_neon_dotprod() argument
41 uint8x8_t r = load_unaligned_u8(ref, ref_stride); in sse_4x2_neon_dotprod()
49 const uint8_t *ref, int ref_stride, in sse_wxh_neon_dotprod() argument
58 sse_8x1_neon_dotprod(src + j, ref + j, &sse[0]); in sse_wxh_neon_dotprod()
59 sse_8x1_neon_dotprod(src + j + src_stride, ref + j + ref_stride, in sse_wxh_neon_dotprod()
64 sse_4x2_neon_dotprod(src + j, src_stride, ref + j, ref_stride, &sse[0]); in sse_wxh_neon_dotprod()
[all …]
/external/ksp/test-utils/testData/api/
DlibOrigins.kt24 // classifier ref: Anno1: KOTLIN_LIB
25 // classifier ref: Anno1: KOTLIN_LIB
26 // classifier ref: Anno2: JAVA_LIB
27 // classifier ref: Anno2: KOTLIN_LIB
28 // classifier ref: Anno3: KOTLIN
29 // classifier ref: Anno3: KOTLIN_LIB
30 // classifier ref: Anno4: JAVA
31 // classifier ref: Anno4: KOTLIN_LIB
32 // classifier ref: Annotation: KOTLIN_LIB
33 // classifier ref: Annotation: KOTLIN_LIB
[all …]
/external/aws-sdk-java-v2/services/s3/src/main/resources/codegen-resources/
Dendpoint-rule-set.json107 "ref": "Region" string
119 "ref": "Accelerate" string
128 "ref": "UseFIPS" string
143 "ref": "UseDualStack" string
152 "ref": "Endpoint" string
166 "ref": "Endpoint" string
174 "ref": "UseFIPS" string
189 "ref": "Endpoint" string
197 "ref": "Accelerate" string
212 "ref": "UseFIPS" string
[all …]
/external/walt/hardware/kicad/
DWALTsm.net18 (comp (ref U1)
25 (comp (ref D1)
31 (comp (ref R1)
37 (comp (ref R2)
43 (comp (ref D3)
49 (comp (ref D4)
55 (comp (ref U2)
61 (comp (ref U3)
67 (comp (ref R3)
73 (comp (ref D2)
[all …]
/external/libaom/doc/dev_guide/
Dav1_encoder.dox106 - \ref AV1_PRIMARY
107 - \ref AV1_PRIMARY.gf_group (\ref GF_GROUP)
108 - \ref AV1_PRIMARY.lap_enabled
109 - \ref AV1_PRIMARY.twopass (\ref TWO_PASS)
110 - \ref AV1_PRIMARY.p_rc (\ref PRIMARY_RATE_CONTROL)
111 - \ref AV1_PRIMARY.tf_info (\ref TEMPORAL_FILTER_INFO)
113 - \ref AV1_COMP
114 - \ref AV1_COMP.oxcf (\ref AV1EncoderConfig)
115 - \ref AV1_COMP.rc (\ref RATE_CONTROL)
116 - \ref AV1_COMP.speed
[all …]
/external/clang/bindings/xml/
Dcomment-xml-schema.rng9 <ref name="Other" />
11 <ref name="Function" />
12 <ref name="Class" />
13 <ref name="Variable" />
14 <ref name="Namespace" />
15 <ref name="Typedef" />
16 <ref name="Enum" />
22 <ref name="attrSourceLocation" />
23 <ref name="Name" />
25 <ref name="USR" />
[all …]
/external/apache-commons-io/src/conf/
Dmaven-pmd-plugin.xml35 <rule ref="category/java/bestpractices.xml/AvoidUsingHardCodedIP" />
36 <rule ref="category/java/bestpractices.xml/CheckResultSet" />
37 <rule ref="category/java/bestpractices.xml/PrimitiveWrapperInstantiation" />
38 <rule ref="category/java/bestpractices.xml/UnusedFormalParameter" />
39 <rule ref="category/java/bestpractices.xml/UnusedLocalVariable" />
40 <rule ref="category/java/bestpractices.xml/UnusedPrivateField" />
41 <rule ref="category/java/bestpractices.xml/UnusedPrivateMethod" />
43 <rule ref="category/java/codestyle.xml/EmptyControlStatement" />
44 <rule ref="category/java/codestyle.xml/ExtendsObject" />
45 <rule ref="category/java/codestyle.xml/ForLoopShouldBeWhileLoop" />
[all …]
/external/e2fsprogs/tests/f_rebuild_csum_rootdir/
Dexpect.123 Inode 11 ref count is 3, should be 2. Fix? yes
28 Inode 12 ref count is 2, should be 1. Fix? yes
33 Inode 13 ref count is 2, should be 1. Fix? yes
38 Inode 14 ref count is 2, should be 1. Fix? yes
43 Inode 15 ref count is 2, should be 1. Fix? yes
48 Inode 16 ref count is 2, should be 1. Fix? yes
53 Inode 17 ref count is 2, should be 1. Fix? yes
58 Inode 18 ref count is 2, should be 1. Fix? yes
63 Inode 19 ref count is 2, should be 1. Fix? yes
68 Inode 20 ref count is 2, should be 1. Fix? yes
[all …]
/external/libvpx/vpx_dsp/arm/
Dhighbd_sse_neon.c18 const uint16_t *ref, in highbd_sse_8x1_init_neon() argument
22 uint16x8_t r = vld1q_u16(ref); in highbd_sse_8x1_init_neon()
32 static INLINE void highbd_sse_8x1_neon(const uint16_t *src, const uint16_t *ref, in highbd_sse_8x1_neon() argument
36 uint16x8_t r = vld1q_u16(ref); in highbd_sse_8x1_neon()
47 const uint16_t *ref, int ref_stride, in highbd_sse_64xh_neon() argument
50 highbd_sse_8x1_init_neon(src + 0 * 8, ref + 0 * 8, &sse[0], &sse[1]); in highbd_sse_64xh_neon()
51 highbd_sse_8x1_init_neon(src + 1 * 8, ref + 1 * 8, &sse[2], &sse[3]); in highbd_sse_64xh_neon()
52 highbd_sse_8x1_init_neon(src + 2 * 8, ref + 2 * 8, &sse[4], &sse[5]); in highbd_sse_64xh_neon()
53 highbd_sse_8x1_init_neon(src + 3 * 8, ref + 3 * 8, &sse[6], &sse[7]); in highbd_sse_64xh_neon()
54 highbd_sse_8x1_neon(src + 4 * 8, ref + 4 * 8, &sse[0], &sse[1]); in highbd_sse_64xh_neon()
[all …]
/external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/javaparser/contexts/
DClassOrInterfaceDeclarationContextResolutionTest.java109 SymbolReference<? extends ResolvedValueDeclaration> ref = context.solveSymbol("i"); in solveSymbolReferringToDeclaredInstanceField() local
110 assertEquals(true, ref.isSolved()); in solveSymbolReferringToDeclaredInstanceField()
111 assertEquals("int", ref.getCorrespondingDeclaration().getType().describe()); in solveSymbolReferringToDeclaredInstanceField()
120 SymbolReference<? extends ResolvedValueDeclaration> ref = context.solveSymbol("j"); in solveSymbolReferringToDeclaredStaticField() local
121 assertEquals(true, ref.isSolved()); in solveSymbolReferringToDeclaredStaticField()
122 assertEquals("long", ref.getCorrespondingDeclaration().getType().describe()); in solveSymbolReferringToDeclaredStaticField()
131 SymbolReference<? extends ResolvedValueDeclaration> ref = context.solveSymbol("k"); in solveSymbolReferringToInheritedInstanceField() local
132 assertEquals(true, ref.isSolved()); in solveSymbolReferringToInheritedInstanceField()
133 assertEquals("boolean", ref.getCorrespondingDeclaration().getType().describe()); in solveSymbolReferringToInheritedInstanceField()
142 SymbolReference<? extends ResolvedValueDeclaration> ref = context.solveSymbol("o"); in solveSymbolReferringToInterfaceInheritedInstanceField() local
[all …]
/external/google-breakpad/src/client/mac/sender/
DBreakpad.xib21 <reference key="IBDocument.PluginDependencies" ref="0"/>
24 <reference key="dict.sortedKeys" ref="0"/>
56 <reference key="NSNextResponder" ref="197525436"/>
61 <reference key="NSNextResponder" ref="469837363"/>
66 <reference key="NSNextResponder" ref="966817352"/>
69 <reference key="NSSuperview" ref="966817352"/>
80 <reference key="NSControlView" ref="997378142"/>
102 <reference key="NSNextResponder" ref="966817352"/>
105 <reference key="NSSuperview" ref="966817352"/>
111 <reference key="NSSupport" ref="26"/>
[all …]

12345678910>>...405