Searched refs:secondary (Results 1 - 25 of 60) sorted by relevance

123

/external/autotest/client/site_tests/audio_CRASFormatConversion/
H A Daudio_CRASFormatConversion.py60 def loopback(self, noise_profile, primary, secondary):
67 @param secondary: The second sample rate, will be SRC'd to the first.
72 'record-%s-%s.wav' % (primary, secondary))
77 # Start with the primary sample rate, then add the secondary. This
78 # causes the secondary to be SRC'd to the primary rate.
85 popens += self.play_sine_tone(_TEST_TONE_TWO, secondary)
102 primary, secondary, str(sox_stat))
123 for secondary in test_sample_rates:
124 key = 'rms_value_%d_%d' % (primary, secondary)
126 noise_profile.name, primary, secondary)
[all...]
/external/vboot_reference/cgpt/
H A Dcgpt.h150 GptEntry *GetEntry(GptData *gpt, int secondary, uint32_t entry_index);
152 void SetPriority(struct drive *drive, int secondary, uint32_t entry_index,
154 int GetPriority(struct drive *drive, int secondary, uint32_t entry_index);
155 void SetTries(struct drive *drive, int secondary, uint32_t entry_index,
157 int GetTries(struct drive *drive, int secondary, uint32_t entry_index);
158 void SetSuccessful(struct drive *drive, int secondary, uint32_t entry_index,
160 int GetSuccessful(struct drive *drive, int secondary, uint32_t entry_index);
162 void SetRaw(struct drive *drive, int secondary, uint32_t entry_index,
172 int IsUnused(struct drive *drive, int secondary, uint32_t index);
173 int IsKernel(struct drive *drive, int secondary, uint32_
[all...]
H A Dcgpt_common.c172 Error("Cannot read secondary GPT header\n");
197 Error("Cannot read secondary partition entry array\n");
222 Error("Cannot write secondary header: %s\n", strerror(errno));
242 Error("Cannot write secondary entries: %s\n", strerror(errno));
705 GptEntry *GetEntry(GptData *gpt, int secondary, uint32_t entry_index) { argument
712 if (secondary == PRIMARY) {
714 } else if (secondary == SECONDARY) {
717 require(secondary == ANY_VALID);
729 void SetPriority(struct drive *drive, int secondary, uint32_t entry_index, argument
733 entry = GetEntry(&drive->gpt, secondary, entry_inde
737 GetPriority(struct drive *drive, int secondary, uint32_t entry_index) argument
743 SetTries(struct drive *drive, int secondary, uint32_t entry_index, int tries) argument
751 GetTries(struct drive *drive, int secondary, uint32_t entry_index) argument
757 SetSuccessful(struct drive *drive, int secondary, uint32_t entry_index, int success) argument
765 GetSuccessful(struct drive *drive, int secondary, uint32_t entry_index) argument
771 SetRaw(struct drive *drive, int secondary, uint32_t entry_index, uint32_t raw) argument
787 IsUnused(struct drive *drive, int secondary, uint32_t index) argument
793 IsKernel(struct drive *drive, int secondary, uint32_t index) argument
[all...]
H A Dcgpt_show.c144 void EntriesDetails(struct drive *drive, const int secondary, int raw) { argument
149 entry = GetEntry(&drive->gpt, secondary, i);
288 /* We show secondary table details if any of following is true.
290 * 2. only secondary is valid.
291 * 3. secondary is not identical to promary.
308 /* We show secondary header if any of following is true:
310 * 2. only secondary is valid.
311 * 3. secondary is not synonymous to primary.
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
H A DTriDiagonalTransformer.java49 private final double[] secondary; field in class:TriDiagonalTransformer
76 secondary = new double[m - 1];
113 final double inv = 1.0 / (secondary[k - 1] * hK[k]);
116 double beta = 1.0 / secondary[k - 1];
156 cachedT.setEntry(i, i - 1, secondary[i - 1]);
159 cachedT.setEntry(i, i + 1, secondary[i]);
191 * Get the secondary diagonal elements of the matrix T of the transform.
194 * @return the secondary diagonal elements of the T matrix
197 return secondary;
219 secondary[
[all...]
H A DBiDiagonalTransformer.java47 private final double[] secondary; field in class:BiDiagonalTransformer
69 secondary = new double[p - 1];
96 final double[] diagonal = (m >= n) ? main : secondary;
148 cachedB.setEntry(i, i - 1, secondary[i - 1]);
152 cachedB.setEntry(i, i + 1, secondary[i]);
177 final double[] diagonal = (m >= n) ? secondary : main;
235 * Get the secondary diagonal elements of the matrix B of the transform.
238 * @return the secondary diagonal elements of the B matrix
241 return secondary;
296 secondary[
[all...]
H A DEigenDecompositionImpl.java63 private double[] secondary; field in class:EigenDecompositionImpl
115 * @param secondary Secondary of the tridiagonal form
121 public EigenDecompositionImpl(final double[] main,final double[] secondary, argument
125 this.secondary = secondary.clone();
462 secondary = transformer.getSecondaryDiagonalRef();
480 e[i] = secondary[i];
485 // Determine the largest main and secondary value in absolute term.
495 // Make null any main and secondary value too small to be significant
/external/guava/guava/src/com/google/common/collect/
H A DCompoundOrdering.java30 Comparator<? super T> secondary) {
32 = ImmutableList.<Comparator<? super T>>of(primary, secondary);
29 CompoundOrdering(Comparator<? super T> primary, Comparator<? super T> secondary) argument
/external/libdrm/tests/vbltest/
H A Dvbltest.c54 int secondary = 0; variable
70 if (secondary)
96 fprintf(stderr, " -s use secondary pipe\n");
118 secondary = 1;
132 if (secondary)
148 if (secondary)
/external/v8/src/ic/
H A Dstub-cache.cc67 // secondary cache before overwriting it.
72 Entry* secondary = entry(secondary_, secondary_offset); local
73 *secondary = *primary;
92 Entry* secondary = entry(secondary_, secondary_offset); local
93 if (secondary->key == name && secondary->map == map) {
94 return secondary->value;
143 // Lookup in secondary table and add matches.
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/nodes/
H A DTag.java70 private boolean secondary = false; // see http://www.yaml.org/refcard.html field in class:Tag
81 this.secondary = !tag.startsWith(PREFIX);
100 return secondary;
/external/mesa3d/src/gallium/drivers/swr/
H A Dswr_resource.h45 SWR_SURFACE_STATE secondary; /* for faking depth/stencil merged formats */ member in struct:swr_resource
H A Dswr_context.cpp152 sbase = (z * spr->secondary.qpitch + box->y) * spr->secondary.pitch +
158 spr->secondary.pBaseAddress[sbase + x];
162 spr->secondary.pBaseAddress[sbase + x];
165 sbase += spr->secondary.pitch;
199 sbase = (z * spr->secondary.qpitch + box.y) * spr->secondary.pitch +
204 spr->secondary.pBaseAddress[sbase + x] =
208 spr->secondary.pBaseAddress[sbase + x] =
212 sbase += spr->secondary
[all...]
H A Dswr_screen.cpp690 * res->secondary will have an identically-laid-out but R8_UINT-formatted
793 res->secondary = res->swr;
794 res->secondary.format = R8_UINT;
795 res->secondary.pitch = res->swr.pitch / util_format_get_blocksize(fmt);
799 ComputeSurfaceOffset<false>(0, 0, 0, 0, 0, level, &res->secondary);
802 res->secondary.pBaseAddress = (uint8_t *)AlignedMalloc(
803 res->secondary.depth * res->secondary.qpitch *
804 res->secondary.pitch, 64);
888 spr->secondary
[all...]
H A Dswr_draw.cpp287 (spr->secondary.pBaseAddress &&
288 renderTargets[i].pBaseAddress == spr->secondary.pBaseAddress)) {
/external/mesa3d/src/intel/vulkan/
H A Danv_batch_chain.c796 /* If this is a secondary command buffer, we need to determine the
805 /* If the secondary has exactly one batch buffer in its list *and*
844 struct anv_cmd_buffer *secondary)
846 switch (secondary->exec_mode) {
848 anv_batch_emit_batch(&primary->batch, &secondary->batch);
852 unsigned length = secondary->batch.end - secondary->batch.start;
855 anv_batch_emit_batch(&primary->batch, &secondary->batch);
860 list_first_entry(&secondary->batch_bos, struct anv_batch_bo, link);
862 list_last_entry(&secondary
843 anv_cmd_buffer_add_secondary(struct anv_cmd_buffer *primary, struct anv_cmd_buffer *secondary) argument
[all...]
/external/icu/icu4c/source/i18n/
H A Ducoleitr.cpp219 uint64_t primary = 0, secondary = 0, tertiary = 0, quaternary = 0; local
230 secondary = ucol_secondaryOrder(ce);
256 primary = secondary = tertiary = 0;
266 return primary << 48 | secondary << 32 | tertiary << 16 | quaternary;
/external/python/cpython2/Lib/
H A Dstring.py91 def __init__(self, primary, secondary):
93 self._secondary = secondary
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DFuturesTest.java257 final SettableFuture<Bar> secondary = SettableFuture.create();
260 return secondary;
264 assertTrue(secondary.isCancelled());
265 assertFalse(secondary.wasInterrupted());
271 final SettableFuture<Bar> secondary = SettableFuture.create();
274 return secondary;
278 assertTrue(secondary.isCancelled());
279 assertTrue(secondary.wasInterrupted());
596 final SettableFuture<Integer> secondary = SettableFuture.create();
600 return secondary;
[all...]
/external/deqp/external/vulkancts/modules/vulkan/query_pool/
H A DvktQueryPoolStatisticsTests.cpp2257 computeShaderInvocationsGroup->addChild(new QueryPoolStatisticsTest<ComputeInvocationsSecondaryTestInstance> (m_testCtx, "secondary", ""));
2262 inputAssemblyVertices->addChild(new QueryPoolGraphicStatisticsTest<VertexShaderSecondaryTestInstance> (m_testCtx, "secondary", "", GraphicBasicTestInstance::ParametersGraphic(VK_QUERY_PIPELINE_STATISTIC_INPUT_ASSEMBLY_VERTICES_BIT, VK_PRIMITIVE_TOPOLOGY_TRIANGLE_STRIP)));
2268 de::MovePtr<TestCaseGroup> secondary (new TestCaseGroup(m_testCtx, "secondary", ""));
2273 secondary->addChild (new QueryPoolGraphicStatisticsTest<VertexShaderSecondaryTestInstance> (m_testCtx, topology_name[topologyNdx].c_str(), "", GraphicBasicTestInstance::ParametersGraphic(VK_QUERY_PIPELINE_STATISTIC_INPUT_ASSEMBLY_PRIMITIVES_BIT, (VkPrimitiveTopology)topologyNdx)));
2277 inputAssemblyPrimitives->addChild(secondary.release());
2284 de::MovePtr<TestCaseGroup> secondary (new TestCaseGroup(m_testCtx, "secondary", ""));
2289 secondary->addChild (new QueryPoolGraphicStatisticsTest<VertexShaderSecondaryTestInstance> (m_testCtx, topology_name[topologyNdx].c_str(), "", GraphicBasicTestInstance::ParametersGraphic(VK_QUERY_PIPELINE_STATISTIC_VERTEX_SHADER_INVOCATIONS_BIT, (VkPrimitiveTopology)topologyNdx)));
2293 vertexShaderInvocations->addChild(secondary
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DStringSearch.java1020 // 16 bits are secondary, next 16 (the high 16 bits of the low 32-bit half) are tertiary. Any of these
1022 // CE weight 0 (as for a combining diacritic with secondary weight when the collator strentgh is primary),
1656 long primary = 0, secondary = 0, tertiary = 0, quaternary = 0;
1667 secondary = CollationElementIterator.secondaryOrder(ce);
1692 primary = secondary = tertiary = 0;
1702 return primary << 48 | secondary << 32 | tertiary << 16 | quaternary;
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/text/
H A DStringSearch.java1036 // 16 bits are secondary, next 16 (the high 16 bits of the low 32-bit half) are tertiary. Any of these
1038 // CE weight 0 (as for a combining diacritic with secondary weight when the collator strentgh is primary),
1672 long primary = 0, secondary = 0, tertiary = 0, quaternary = 0;
1683 secondary = CollationElementIterator.secondaryOrder(ce);
1708 primary = secondary = tertiary = 0;
1718 return primary << 48 | secondary << 32 | tertiary << 16 | quaternary;
/external/mesa3d/src/mesa/main/
H A Dff_fragment_shader.cpp1167 ir_rvalue *secondary; local
1172 secondary = swizzle_xyz(var);
1174 secondary = swizzle_xyz(get_current_attrib(p, VERT_ATTRIB_COLOR1));
1177 p->emit(assign(spec_result, add(swizzle_xyz(spec_result), secondary),
/external/curl/tests/server/
H A Dsws.c1451 bool secondary = FALSE; local
1475 a secondary tunnel that may be used for passive FTP data connection. */
1496 secondary tunnel only when this tunnel is not established
1554 /* passive mode FTP may establish a secondary tunnel */
1594 /* secondary tunnel established, now we have two
1601 secondary = TRUE;
1611 /* secondary tunnel not established */
1756 secondary = FALSE;
1770 secondary = FALSE;
1781 max_tunnel_idx = secondary
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dregcoll.cpp346 String[] secondary = {
351 static const UChar secondary[][CollationRegressionTest::MAX_TOKEN_LEN] = local
358 compareArray(*c, secondary, UPRV_LENGTHOF(secondary));
446 // French secondary collation checking at the end of compare iteration fails
1336 errln("should forbid before-3-reset followed by primary or secondary relation");

Completed in 866 milliseconds

123