HomeSort by relevance Sort by last modified time
    Searched defs:target (Results 651 - 675 of 3598) sorted by null

<<21222324252627282930>>

  /external/deqp/modules/gles3/functional/
es3fBufferMapTests.cpp 612 deUint32 target = bufferTargets[targetNdx]; local
618 writeGroup->addChild(new BufferMapReadCase(m_context, (string(getBufferTargetName(target)) + "_full").c_str(), "", target, hint, size, 0, size, write));
619 writeGroup->addChild(new BufferMapReadCase(m_context, (string(getBufferTargetName(target)) + "_partial").c_str(), "", target, hint, size, partialOffs, partialSize, write));
632 deUint32 target = bufferTargets[targetNdx]; local
635 string name = string(getBufferTargetName(target)) + "_" + getUsageHintName(hint);
637 hintsGroup->addChild(new BufferMapReadCase(m_context, name.c_str(), "", target, hint, size, 0, size, WRITE_BUFFER_SUB_DATA));
657 deUint32 target = bufferTargets[targetNdx]; local
662 string name = string(getBufferTargetName(target)) + "_" + getUsageHintName(hint)
678 deUint32 target = bufferTargets[targetNdx]; local
695 deUint32 target = bufferTargets[targetNdx]; local
710 deUint32 target = bufferTargets[targetNdx]; local
725 deUint32 target = bufferTargets[targetNdx]; local
740 deUint32 target = bufferTargets[targetNdx]; local
762 deUint32 target = bufferTargets[targetNdx]; local
783 deUint32 target = bufferTargets[targetNdx]; local
    [all...]
es3fFboCompletenessTests.cpp 285 const GLenum target = GL_COLOR_ATTACHMENT0; local
298 texCfg->internalFormat = getDefaultFormat(target, GL_TEXTURE);
308 builder.glAttach(target, att);
403 const GLenum target = s_targets[i]; local
412 attachTargetToNew(target, GL_TEXTURE, fmt, 64, 64, builder);
428 builder.glAttach(target, &att);
es3fFboStateQueryTests.cpp 46 void checkAttachmentComponentSizeAtLeast (tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLenum target, GLenum attachment, int r, int g, int b, int a, int d, int s)
66 gl.glGetFramebufferAttachmentParameteriv(target, attachment, paramNames[ndx], &state);
83 void checkAttachmentComponentSizeExactly (tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLenum target, GLenum attachment, int r, int g, int b, int a, int d, int s)
103 gl.glGetFramebufferAttachmentParameteriv(target, attachment, paramNames[ndx], &state);
144 void checkAttachmentParam(tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLenum target, GLenum attachment, GLenum pname, GLenum reference)
147 gl.glGetFramebufferAttachmentParameteriv(target, attachment, pname, &state);
153 void checkColorAttachmentParam(tcu::TestContext& testCtx, glu::CallLogWrapper& gl, GLenum target, GLenum pname, GLenum reference)
155 checkAttachmentParam(testCtx, gl, target, GL_COLOR_ATTACHMENT0, pname, reference);
892 // check color target
895 // check depth target
1002 GLenum target; member in struct:deqp::gles3::Functional::FramebufferTarget
    [all...]
  /external/deqp/modules/glshared/
glsSamplerObjectTest.cpp 76 , m_target (spec.target)
83 void TextureSamplerTest::setTextureState (const glw::Functions& gl, GLenum target, SamplingState state)
85 gl.texParameteri(target, GL_TEXTURE_MIN_FILTER, state.minFilter);
86 GLU_EXPECT_NO_ERROR(gl.getError(), "glTexParameteri(target, GL_TEXTURE_MIN_FILTER, state.minFilter)");
87 gl.texParameteri(target, GL_TEXTURE_MAG_FILTER, state.magFilter);
88 GLU_EXPECT_NO_ERROR(gl.getError(), "glTexParameteri(target, GL_TEXTURE_MAG_FILTER, state.magFilter)");
89 gl.texParameteri(target, GL_TEXTURE_WRAP_S, state.wrapS);
90 GLU_EXPECT_NO_ERROR(gl.getError(), "glTexParameteri(target, GL_TEXTURE_WRAP_S, state.wrapS)");
91 gl.texParameteri(target, GL_TEXTURE_WRAP_T, state.wrapT);
92 GLU_EXPECT_NO_ERROR(gl.getError(), "glTexParameteri(target, GL_TEXTURE_WRAP_T, state.wrapT)")
455 const deUint32 target = glu::getGLCubeFace((tcu::CubeFace)face); local
998 const deUint32 target = glu::getGLCubeFace((tcu::CubeFace)face); local
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/io/instructions/
DecodedInstruction.java 53 * target address argument. This is an absolute address, not just
57 private final int target; field in class:DecodedInstruction
102 int index, IndexType indexType, int target, long literal) {
115 this.target = target;
150 * Gets the raw target.
153 return target;
157 * Gets the target as a relative offset from the given address.
160 return target - baseAddress;
164 * Gets the target as a relative offset from the given bas
    [all...]
  /external/drm_gralloc/
gralloc_drm_intel.c 104 struct intel_buffer *target = (struct intel_buffer *) bo; local
109 target->ibo, 0, read_domains, write_domain);
111 batch_dword(info, target->ibo->offset);
  /external/expat/lib/
xmltok_impl.c 227 const char *target = ptr; local
240 if (!PREFIX(checkPiTarget)(enc, target, ptr, &tok)) {
264 if (!PREFIX(checkPiTarget)(enc, target, ptr, &tok)) {
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/request/target/
SquaringDrawable.java 1 package com.bumptech.glide.request.target;
ViewTarget.java 1 package com.bumptech.glide.request.target;
18 * A base {@link Target} for loading {@link android.graphics.Bitmap}s into {@link View}s that provides default
34 * @param <T> The specific subclass of view wrapped by this target.
35 * @param <Z> The resource type this target will receive.
110 return "Target for: " + view;
  /external/guava/guava/src/com/google/common/base/
Predicates.java 176 * tested {@code equals()} the given target or both are null.
178 public static <T> Predicate<T> equalTo(@Nullable T target) {
179 return (target == null)
181 : new IsEqualToPredicate<T>(target);
228 * @param target the collection that may contain the function input
230 public static <T> Predicate<T> in(Collection<? extends T> target) {
231 return new InPredicate<T>(target);
419 private final T target; field in class:Predicates.IsEqualToPredicate
421 private IsEqualToPredicate(T target) {
422 this.target = target
504 private final Collection<?> target; field in class:Predicates.InPredicate
    [all...]
  /external/guava/guava/src/com/google/common/collect/
RegularImmutableSortedSet.java 104 Object target = thatIterator.next(); local
110 int cmp = unsafeCompare(thisIterator.peek(), target);
121 target = thatIterator.next();
268 @Override int indexOf(@Nullable Object target) {
269 if (target == null) {
274 position = SortedLists.binarySearch(elements, target, unsafeComparator(),
  /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
Predicates.java 173 * tested {@code equals()} the given target or both are null.
175 public static <T> Predicate<T> equalTo(@Nullable T target) {
176 return (target == null)
178 : new IsEqualToPredicate<T>(target);
192 * @param target the collection that may contain the function input
194 public static <T> Predicate<T> in(Collection<? extends T> target) {
195 return new InPredicate<T>(target);
356 private final T target; field in class:Predicates.IsEqualToPredicate
358 private IsEqualToPredicate(T target) {
359 this.target = target
383 private final Collection<?> target; field in class:Predicates.InPredicate
    [all...]
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
SimpleTimeLimiterTest.java 120 SampleImpl target = new SampleImpl(); local
122 target, Sample.class, ENOUGH_MS, TimeUnit.MILLISECONDS);
126 assertTrue(target.finished);
130 SampleImpl target = new SampleImpl(); local
132 target, Sample.class, NOT_ENOUGH_MS, TimeUnit.MILLISECONDS);
142 assertFalse(target.finished);
144 assertFalse(target.finished);
148 SampleImpl target = new SampleImpl(); local
150 target, Sample.class, ENOUGH_MS, TimeUnit.MILLISECONDS);
161 SampleImpl target = new SampleImpl() local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
AnyTransliterator.java 25 * output script. It is named Any-T or Any-T/V, where T is the target
26 * and V is the optional variant. The target T is a script.
31 * that script to the given target/variant. It does so by
33 * target/variant. If a run consists only of the target script,
59 * The target or target/variant string.
61 private String target; field in class:AnyTransliterator
64 * The target script code. Never USCRIPT_INVALID_CODE.
89 // our target or target/varian
242 String target = t.nextElement(); local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
CompactCharArray.java 203 char[] target = exhaustive ? new char[UNICODECOUNT] : values; local
227 dest = FindOverlappingPosition(iBlockStart, target,
236 target[j] = values[iBlockStart + j - dest];
251 System.arraycopy(target, 0, result, 0, newSize);
277 char[] target, int targetStart,
283 if (source[i] != target[i + delta])
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/duration/
DataReadWriteTest.java 99 String target = targets[j]; local
106 assertEquals("" + j, target, normalize(str));
153 String target = targets[j]; local
160 assertEquals("" + j, target, normalize(str));
210 String target = targets[j]; local
217 assertEquals("" + j, target, normalize(str));
280 String target = targets[j]; local
287 assertEquals("" + j + " '" + str + "'", target, normalize(str));
321 String target = "<testTable>" + local
337 assertEquals("'" + str + "'", target, normalize(str))
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
PrettyPrinter.java 35 private StringBuffer target = new StringBuffer(); field in class:PrettyPrinter
136 target.setLength(0);
137 target.append("[");
145 target.append("]");
146 String sresult = target.toString();
189 target.append(' ');
195 target.append(' ');
197 target.append(' '); // make sure we don't accidentally merge two surrogates
213 target.append('-');
227 target.append(quoter.transform(s))
    [all...]
  /external/icu/icu4c/source/common/
ucnv_u16.c 52 char *target; local
73 &pArgs->target, pArgs->targetLimit,
79 target=pArgs->target;
80 if(target >= pArgs->targetLimit) {
85 targetCapacity=(uint32_t)(pArgs->targetLimit-target);
95 target[0]=(uint8_t)(c>>8);
96 target[1]=(uint8_t)c;
97 target[2]=(uint8_t)(trail>>8);
98 target[3]=(uint8_t)trail
256 UChar *target; local
648 char *target; local
852 UChar *target; local
    [all...]
ucnv_u7.c 210 UChar *target; local
234 target=pArgs->target;
263 targetCapacity=(int32_t)(targetLimit-target);
277 *target++=b;
292 if(source<sourceLimit && target>=targetLimit) {
293 /* target is full */
309 if(target<targetLimit) {
372 *target++=(UChar)((bits<<4)|(base64Value>>2));
383 *target++=(UChar)((bits<<2)|(base64Value>>4))
461 uint8_t *target, *targetLimit; local
889 UChar *target; local
1157 uint8_t *target, *targetLimit; local
    [all...]
ucnv_u8.c 104 UChar *myTarget = args->target;
155 /* stores a partially calculated target*/
219 /* End of target buffer */
223 args->target = myTarget;
232 UChar *myTarget = args->target;
348 { /* End of target buffer */
352 args->target = myTarget;
363 uint8_t *myTarget = (uint8_t *) args->target;
428 or do we have to be careful about target buffer space? */
467 args->target = (char *) myTarget
766 uint8_t *target; local
    [all...]
  /external/icu/icu4c/source/i18n/
anytrans.cpp 193 target = theTarget;
195 target.append(VARIANT_SEP).append(theVariant);
208 target(o.target),
242 // our target or target/variant
289 id.append(TARGET_SEP).append(target);
297 id.append(LATIN_PIVOT, -1).append(target);
367 UnicodeString target; local
368 Transliterator::_getAvailableTarget(t, source, target);
386 TransliteratorIDParser::STVtoID(UnicodeString(TRUE, ANY, 3), target, variant, id); local
    [all...]
  /external/icu/icu4c/source/test/intltest/
locnmtst.cpp 46 #define test_assert_equal(target,value) \
48 if (UnicodeString(target)!=(value)) { \
50 dataerrln("FAIL: " #target " == " #value " was not true. In " __FILE__ " on line %d", __LINE__); \
52 logln("PASS: asserted " #target " == " #value); \
109 const char *target = "English (Traditional, United States, VALLEY, " local
113 test_assert_equal(target, temp);
120 const char *target = "Japanese (Japanese Yen)"; local
123 test_assert_equal(target, temp);
130 const char *target = "German (Currency: XYZ)"; local
133 test_assert_equal(target, temp)
140 const char *target = "German (foo=bar)"; local
150 const char *target = "German (Private-Use: foobar)"; local
196 const char *target = "English (Traditional, United States, VALLEY, " local
382 const char *target = "Root (Phonebook Sort Order)"; local
    [all...]
  /external/icu/icu4c/source/test/perf/convperf/
convperf.h 29 UChar* target; member in class:ICUToUnicodePerfFunction
41 target = NULL;
43 int32_t reqdLen = ucnv_toUChars(conv, target, 0,
47 target=(UChar*)malloc((reqdLen) * U_SIZEOF_UCHAR*2);
48 targetLimit = target + reqdLen;
49 if(target == NULL){
58 UChar* myTarget = target;
65 free(target);
74 char* target; member in class:ICUFromUnicodePerfFunction
87 target = NULL
    [all...]
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
CharsetASCII.java 37 protected CoderResult decodeLoop(ByteBuffer source, CharBuffer target, IntBuffer offsets,
43 if (!target.hasRemaining()) {
50 int oldTarget = target.position();
52 if (source.hasArray() && target.hasArray()) {
64 char[] targetArray = target.array();
65 int targetOffset = target.arrayOffset();
67 int targetLength = target.limit() - oldTarget;
77 cr = decodeLoopCoreOptimized(source, target, sourceArray, targetArray, sourceIndex, offset, limit);
81 target.position(oldTarget + sourceLength);
85 target.position(oldTarget + targetLength)
    [all...]
CharsetHZ.java 64 protected CoderResult decodeLoop(ByteBuffer source, CharBuffer target, IntBuffer offsets, boolean flush) {
72 else if (!target.hasRemaining())
77 if (target.hasRemaining()) {
93 target.put((char) mySourceChar);
196 target.put((char) targetUniChar);
239 protected CoderResult encodeLoop(CharBuffer source, ByteBuffer target, IntBuffer offsets, boolean flush) {
247 else if (!target.hasRemaining())
250 if (fromUChar32 != 0 && target.hasRemaining()) {
257 if (target.hasRemaining()) {
266 concatEscape(source, target, offsets, TILDE_ESCAPE)
    [all...]

Completed in 1320 milliseconds

<<21222324252627282930>>