HomeSort by relevance Sort by last modified time
    Searched full:tobj (Results 1 - 25 of 65) sorted by null

1 2 3

  /libcore/luni/src/test/java/libcore/java/io/
OldWriterTest.java 27 Writer tobj = new Support_ASimpleWriter(2); local
28 tobj.append('a');
29 tobj.append('b');
30 assertEquals("Wrong stuff written!", "ab", tobj.toString());
32 tobj.append('c');
41 Writer tobj = new Support_ASimpleWriter(20); local
42 tobj.append(testString);
43 assertEquals("Wrong stuff written!", testString, tobj.toString());
45 tobj.append(testString);
54 Writer tobj = new Support_ASimpleWriter(21) local
79 Writer tobj = new Support_ASimpleWriter(21); local
101 Writer tobj = new Support_ASimpleWriter(21); local
118 Writer tobj = new Support_ASimpleWriter(2); local
131 Writer tobj = new Support_ASimpleWriter(21); local
149 Writer tobj = new Support_ASimpleWriter(21); local
174 Writer tobj = new Support_ASimpleWriter(21); local
    [all...]
OldPushbackReaderTest.java 59 PushbackReader tobj; local
61 tobj = new PushbackReader(underlying, 10000);
62 tobj = new PushbackReader(underlying, 1);
65 tobj = new PushbackReader(underlying, -1);
66 tobj.close();
72 tobj = new PushbackReader(underlying, 0);
73 tobj.close();
84 PushbackReader tobj; local
86 tobj = new PushbackReader(underlying);
87 tobj.close()
111 PushbackReader tobj; local
128 PushbackReader tobj; local
230 PushbackReader tobj; local
246 PushbackReader tobj; local
287 PushbackReader tobj; local
306 PushbackReader tobj; local
351 PushbackReader tobj; local
    [all...]
OldPushbackInputStreamTest.java 73 PushbackInputStream tobj; local
75 tobj = new PushbackInputStream(underlying);
76 tobj.close();
77 tobj.close();
78 tobj = new PushbackInputStream(underlying);
81 tobj.close();
89 PushbackInputStream tobj; local
91 tobj = new PushbackInputStream(underlying);
92 assertEquals("Wrong number!", 30, tobj.available());
95 tobj.available()
108 PushbackInputStream tobj; local
125 PushbackInputStream tobj; local
142 PushbackInputStream tobj; local
167 PushbackInputStream tobj; local
202 PushbackInputStream tobj; local
242 PushbackInputStream tobj; local
307 PushbackInputStream tobj; local
    [all...]
OldStringWriterTest.java 29 StringWriter tobj = new StringWriter(9); local
30 tobj.append("01234567890123456789", 19, 2);
36 StringWriter tobj = new StringWriter(9); local
37 tobj.append("01234567890123456789", 29, 2);
  /external/mesa3d/src/mesa/drivers/dri/i915/
intel_tex_validate.c 24 struct gl_texture_object *tObj = &intelObj->base;
29 maxlevel = tObj->BaseLevel;
31 maxlevel = tObj->_MaxLevel;
46 struct gl_texture_object *tObj = intel->ctx.Texture.Unit[unit]._Current;
47 struct intel_texture_object *intelObj = intel_texture_object(tObj);
55 if (tObj->Target == GL_TEXTURE_BUFFER)
65 if (intelObj->mt && intelObj->mt->first_level != tObj->BaseLevel)
71 firstImage = intel_texture_image(tObj->Image[0][tObj->BaseLevel]);
76 * For pre-gen4, we have to match first_level == tObj->BaseLevel
    [all...]
i915_texstate.c 145 struct gl_texture_object *tObj = tUnit->_Current;
146 struct intel_texture_object *intelObj = intel_texture_object(tObj);
169 firstImage = tObj->Image[0][tObj->BaseLevel];
176 tObj->DepthMode);
192 maxlod = MIN2(sampler->MaxLod, tObj->_MaxLevel - tObj->BaseLevel);
270 tObj->Target != GL_TEXTURE_3D) {
271 if (tObj->Target == GL_TEXTURE_1D)
298 if (tObj->Target == GL_TEXTURE_1D
    [all...]
i830_texstate.c 120 struct gl_texture_object *tObj = tUnit->_Current;
121 struct intel_texture_object *intelObj = intel_texture_object(tObj);
144 firstImage = tObj->Image[0][tObj->BaseLevel];
146 intel_miptree_get_image_offset(intelObj->mt, tObj->BaseLevel, 0,
177 if (tObj->Target == GL_TEXTURE_CUBE_MAP)
265 maxlod = MIN2(sampler->MaxLod, tObj->_MaxLevel - tObj->BaseLevel);
290 if (tObj->Target == GL_TEXTURE_3D)
  /external/mesa3d/src/mesa/swrast/
s_texfilter.c 613 linear_mipmap_level(const struct gl_texture_object *tObj, GLfloat lambda)
616 return tObj->BaseLevel;
617 else if (lambda > tObj->_MaxLambda)
618 return (GLint) (tObj->BaseLevel + tObj->_MaxLambda);
620 return (GLint) (tObj->BaseLevel + lambda);
628 nearest_mipmap_level(const struct gl_texture_object *tObj, GLfloat lambda)
634 else if (lambda > tObj->_MaxLambda + 0.4999F)
635 l = tObj->_MaxLambda + 0.4999F;
638 level = (GLint) (tObj->BaseLevel + l + 0.5F)
    [all...]
s_texfilter.h 38 const struct gl_texture_object *tObj,
  /external/mesa3d/src/mesa/drivers/dri/i965/
intel_tex_validate.c 38 * Sets our driver-specific variant of tObj->_MaxLevel for later surface state
49 struct gl_texture_object *tObj = &intelObj->base;
51 if (!tObj->_MipmapComplete ||
52 (tObj->_RenderToTexture &&
55 intelObj->_MaxLevel = tObj->BaseLevel;
57 intelObj->_MaxLevel = tObj->_MaxLevel;
71 struct gl_texture_object *tObj = ctx->Texture.Unit[unit]._Current;
72 struct intel_texture_object *intelObj = intel_texture_object(tObj);
80 if (tObj->Target == GL_TEXTURE_BUFFER)
91 int validate_first_level = tObj->BaseLevel
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
CurrentContendedMonitorTest.java 80 TaggedObject tobj = reply.getNextValueAsTaggedObject(); local
83 + JDWPConstants.Tag.getName(tobj.tag) + "(" + tobj.tag + ") "
84 + "ID: " + tobj.objectID);
89 packet.setNextValueAsObjectID(tobj.objectID);
OwnedMonitorsTest.java 88 TaggedObject tobj = reply.getNextValueAsTaggedObject(); local
91 + JDWPConstants.Tag.getName(tobj.tag) + "(" + tobj.tag + ") "
92 + "ID: " + tobj.objectID);
97 packet.setNextValueAsObjectID(tobj.objectID);
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
Holder.java 108 ASN1TaggedObject tObj = ASN1TaggedObject.getInstance(seq
111 switch (tObj.getTagNo())
114 baseCertificateID = IssuerSerial.getInstance(tObj, false);
117 entityName = GeneralNames.getInstance(tObj, false);
120 objectDigestInfo = ObjectDigestInfo.getInstance(tObj, false);
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_mipmap_tree.c 238 * @param[in] tObj texture object whose LOD values to calculate
242 static void calculate_min_max_lod(struct gl_sampler_object *samp, struct gl_texture_object *tObj,
248 switch (tObj->Target) {
256 minLod = maxLod = tObj->BaseLevel;
258 minLod = tObj->BaseLevel + (GLint)(samp->MinLod);
259 minLod = MAX2(minLod, tObj->BaseLevel);
260 minLod = MIN2(minLod, tObj->MaxLevel);
261 maxLod = tObj->BaseLevel + (GLint)(samp->MaxLod + 0.5);
262 maxLod = MIN2(maxLod, tObj->MaxLevel);
263 maxLod = MIN2(maxLod, tObj->Image[0][minLod]->MaxNumLevels - 1 + minLod)
    [all...]
radeon_tex_copy.c 41 struct radeon_tex_obj *tobj,
75 radeon_validate_texture_miptree(ctx, &tobj->base.Sampler, &tobj->base);
  /external/swiftshader/third_party/LLVM/test/CodeGen/ARM/
crash-greedy-v6.ll 6 define internal void @sample_nearest_3d(i8* nocapture %tObj, i32 %n, float* nocapture %s, float* nocapture %t, float* nocapture %u, float* nocapture %lambda, i8* nocapture %red, i8* nocapture %green, i8* nocapture %blue, i8* nocapture %alpha) nounwind ssp {
22 tail call fastcc void @sample_3d_nearest(i8* %tObj, i8* undef, float undef, float %tmp12, float undef, i8* %arrayidx19, i8* %arrayidx22, i8* %arrayidx25, i8* %arrayidx28)
  /frameworks/opt/net/wifi/service/jni/
jni_helper.h 48 T tObj = mObj;
50 return tObj;
  /external/llvm/test/CodeGen/X86/
2007-10-04-AvoidEFLAGSCopy.ll 6 define fastcc void @sample_3d_linear(%struct.gl_texture_object* %tObj, %struct.gl_texture_image* %img, float %s, float %t, float %r, i8* %red, i8* %green, i8* %blue, i8* %alpha) {
  /external/mesa3d/src/mesa/state_tracker/
st_cb_texture.h 50 struct gl_texture_object *tObj,
  /external/swiftshader/third_party/LLVM/test/CodeGen/X86/
2007-10-04-AvoidEFLAGSCopy.ll 6 define fastcc void @sample_3d_linear(%struct.gl_texture_object* %tObj, %struct.gl_texture_image* %img, float %s, float %t, float %r, i8* %red, i8* %green, i8* %blue, i8* %alpha) {
  /external/llvm/test/CodeGen/ARM/
crash-greedy-v6.ll 7 define internal void @sample_nearest_3d(i8* nocapture %tObj, i32 %n, float* nocapture %s, float* nocapture %t, float* nocapture %u, float* nocapture %lambda, i8* nocapture %red, i8* nocapture %green, i8* nocapture %blue, i8* nocapture %alpha) nounwind ssp {
42 tail call fastcc void @sample_3d_nearest(i8* %tObj, i8* undef, float undef, float %tmp12, float undef, i8* %arrayidx19, i8* %arrayidx22, i8* %arrayidx25, i8* %arrayidx28)
  /cts/tests/tests/shortcutmanager/src/android/content/pm/cts/shortcutmanager/
ShortcutManagerUsageTest.java 58 Time tobj = new Time(); local
59 tobj.set(System.currentTimeMillis());
60 return tobj.format("%Y-%m-%d %H:%M:%S") + "." + signature + "."
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
CMSSignedHelper.java 247 ASN1TaggedObject tObj = ASN1TaggedObject.getInstance(obj);
249 if (tObj.getTagNo() == 1)
251 OtherRevocationInfoFormat other = OtherRevocationInfoFormat.getInstance(tObj, false);
  /external/ims/rcs/presencepolling/src/com/android/service/ims/presence/
Contacts.java 300 Time tobj = new Time(); local
301 tobj.set(time);
302 return String.format("%s.%s", tobj.format("%m-%d %H:%M:%S"), time % 1000);
PollingTask.java 216 Time tobj = new Time(); local
217 tobj.set(time);
218 return String.format("%s.%s", tobj.format("%m-%d %H:%M:%S"), time % 1000);

Completed in 1320 milliseconds

1 2 3