Home
last modified time | relevance | path

Searched refs:oc (Results 1 – 25 of 275) sorted by relevance

1234567891011

/external/valgrind/main/VEX/unused/
Dlinker.c167 static void addProddableBlock ( ObjectCode* oc, void* start, int size ) in addProddableBlock() argument
172 fprintf(stderr, "aPB oc=%p %p %d (%p .. %p)\n", oc, start, size, in addProddableBlock()
177 pb->next = oc->proddables; in addProddableBlock()
178 oc->proddables = pb; in addProddableBlock()
181 static void checkProddableBlock ( ObjectCode* oc, void* addr ) in checkProddableBlock() argument
184 for (pb = oc->proddables; pb != NULL; pb = pb->next) { in checkProddableBlock()
353 char* alloc_fixup_bytes ( ObjectCode* oc, int nbytes ) in alloc_fixup_bytes() argument
358 res = &(oc->fixup[oc->fixup_used]); in alloc_fixup_bytes()
359 oc->fixup_used += nbytes; in alloc_fixup_bytes()
360 if (oc->fixup_used >= oc->fixup_size) { in alloc_fixup_bytes()
[all …]
/external/valgrind/main/VEX/switchback/
Dlinker.c231 static void addProddableBlock ( ObjectCode* oc, void* start, int size )
236 fprintf(stderr, "aPB oc=%p %p %d (%p .. %p)\n", oc, start, size,
241 pb->next = oc->proddables;
242 oc->proddables = pb;
245 static void checkProddableBlock ( ObjectCode* oc, void* addr )
248 for (pb = oc->proddables; pb != NULL; pb = pb->next) {
419 char* alloc_fixup_bytes ( ObjectCode* oc, int nbytes )
424 res = &(oc->fixup[oc->fixup_used]);
425 oc->fixup_used += nbytes;
426 if (oc->fixup_used >= oc->fixup_size) {
[all …]
/external/jmonkeyengine/engine/src/core/com/jme3/material/
DRenderState.java325 OutputCapsule oc = ex.getCapsule(this); in write() local
326 oc.write(pointSprite, "pointSprite", false); in write()
327 oc.write(wireframe, "wireframe", false); in write()
328 oc.write(cullMode, "cullMode", FaceCullMode.Back); in write()
329 oc.write(depthWrite, "depthWrite", true); in write()
330 oc.write(depthTest, "depthTest", true); in write()
331 oc.write(colorWrite, "colorWrite", true); in write()
332 oc.write(blendMode, "blendMode", BlendMode.Off); in write()
333 oc.write(alphaTest, "alphaTest", false); in write()
334 oc.write(alphaFallOff, "alphaFallOff", 0); in write()
[all …]
DTechniqueDef.java367 OutputCapsule oc = ex.getCapsule(this); in write() local
368 oc.write(name, "name", null); in write()
369 oc.write(vertName, "vertName", null); in write()
370 oc.write(fragName, "fragName", null); in write()
371 oc.write(shaderLang, "shaderLang", null); in write()
372 oc.write(presetDefines, "presetDefines", null); in write()
373 oc.write(lightMode, "lightMode", LightMode.Disable); in write()
374 oc.write(shadowMode, "shadowMode", ShadowMode.Disable); in write()
375 oc.write(renderState, "renderState", null); in write()
376 oc.write(usesShaders, "usesShaders", false); in write()
DMatParam.java290 OutputCapsule oc = ex.getCapsule(this); in write() local
291 oc.write(type, "varType", null); in write()
292 oc.write(name, "name", null); in write()
293 oc.write(ffBinding, "ff_binding", null); in write()
296 oc.write(s, "value_savable", null); in write()
299 oc.write(f.floatValue(), "value_float", 0f); in write()
302 oc.write(i.intValue(), "value_int", 0); in write()
305 oc.write(b.booleanValue(), "value_bool", false); in write()
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/w3c/
Dtest_converter_unittest.py83 oc = OutputCapture()
84 oc.capture_output()
90 oc.restore_output()
134 oc = OutputCapture()
135 oc.capture_output()
141 oc.restore_output()
170 oc = OutputCapture()
171 oc.capture_output()
178 oc.restore_output()
196 oc = OutputCapture()
[all …]
Dtest_importer_unittest.py59 oc = OutputCapture()
60 oc.capture_output()
64 oc.restore_output()
72 oc = OutputCapture()
73 oc.capture_output()
77 oc.restore_output()
Dtest_parser_unittest.py65 oc = OutputCapture()
66 oc.capture_output()
72 _, _, logs = oc.restore_output()
90 oc = OutputCapture()
91 oc.capture_output()
98 _, _, logs = oc.restore_output()
/external/jmonkeyengine/engine/src/core/com/jme3/font/
DBitmapCharacter.java157 OutputCapsule oc = ex.getCapsule(this); in write() local
158 oc.write(c, "c", 0); in write()
159 oc.write(x, "x", 0); in write()
160 oc.write(y, "y", 0); in write()
161 oc.write(width, "width", 0); in write()
162 oc.write(height, "height", 0); in write()
163 oc.write(xOffset, "xOffset", 0); in write()
164 oc.write(yOffset, "yOffset", 0); in write()
165 oc.write(xAdvance, "xAdvance", 0); in write()
177 oc.write(seconds, "seconds", null); in write()
[all …]
DBitmapCharacterSet.java52 OutputCapsule oc = ex.getCapsule(this); in write() local
53 oc.write(lineHeight, "lineHeight", 0); in write()
54 oc.write(base, "base", 0); in write()
55 oc.write(renderedSize, "renderedSize", 0); in write()
56 oc.write(width, "width", 0); in write()
57 oc.write(height, "height", 0); in write()
58 oc.write(pageSize, "pageSize", 0); in write()
67 writeCharset(oc, style, charset); in write()
69 oc.write(styles, "styles", null); in write()
72 …protected void writeCharset(OutputCapsule oc, int style, IntMap<BitmapCharacter> charset) throws I… in writeCharset() argument
[all …]
/external/jmonkeyengine/engine/src/core-effects/com/jme3/water/
DWaterFilter.java304 OutputCapsule oc = ex.getCapsule(this); in write() local
306 oc.write(speed, "speed", 1f); in write()
307 oc.write(lightDirection, "lightDirection", new Vector3f(0, -1, 0)); in write()
308 oc.write(lightColor, "lightColor", ColorRGBA.White); in write()
309 oc.write(waterHeight, "waterHeight", 0.0f); in write()
310 oc.write(waterColor, "waterColor", new ColorRGBA(0.0078f, 0.3176f, 0.5f, 1.0f)); in write()
311 oc.write(deepWaterColor, "deepWaterColor", new ColorRGBA(0.0039f, 0.00196f, 0.145f, 1.0f)); in write()
313 oc.write(colorExtinction, "colorExtinction", new Vector3f(5.0f, 20.0f, 30.0f)); in write()
314 oc.write(waterTransparency, "waterTransparency", 0.1f); in write()
315 oc.write(maxAmplitude, "maxAmplitude", 1.5f); in write()
[all …]
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
DUserData.java103 OutputCapsule oc = ex.getCapsule(this); in write() local
104 oc.write(type, "type", (byte)0); in write()
109 oc.write(i, "intVal", 0); in write()
113 oc.write(f, "floatVal", 0f); in write()
117 oc.write(b, "boolVal", false); in write()
121 oc.write(s, "strVal", null); in write()
125 oc.write(l, "longVal", 0l); in write()
/external/jmonkeyengine/engine/src/core/com/jme3/audio/
DAudioNode.java733 OutputCapsule oc = ex.getCapsule(this); in write() local
734 oc.write(audioKey, "audio_key", null); in write()
735 oc.write(loop, "looping", false); in write()
736 oc.write(volume, "volume", 1); in write()
737 oc.write(pitch, "pitch", 1); in write()
738 oc.write(timeOffset, "time_offset", 0); in write()
739 oc.write(dryFilter, "dry_filter", null); in write()
741 oc.write(velocity, "velocity", null); in write()
742 oc.write(reverbEnabled, "reverb_enabled", false); in write()
743 oc.write(reverbFilter, "reverb_filter", null); in write()
[all …]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
Dqueries_unittest.py50 oc = OutputCapture()
52 oc.capture_output()
55 stdout, _, _ = oc.restore_output()
109 self.oc = None
116 if self.oc:
120 self.oc = OutputCapture()
121 self.oc.capture_output()
124 stdout, stderr, logs = self.oc.restore_output()
125 self.oc = None
/external/jmonkeyengine/engine/src/core/com/jme3/shader/
DUniform.java72 OutputCapsule oc = ex.getCapsule(this); in write() local
73 oc.write(varType, "varType", null); in write()
74 oc.write(binding, "binding", null); in write()
77 oc.write( ((Boolean)value).booleanValue(), "valueBoolean", false ); in write()
80 oc.write( ((Float)value).floatValue(), "valueFloat", 0); in write()
83 oc.write( (FloatBuffer)value, "valueFloatArray", null); in write()
86 oc.write( ((Integer)value).intValue(), "valueInt", 0); in write()
89 oc.write( (Matrix3f)value, "valueMatrix3", null); in write()
96 oc.write( (Matrix4f)value, "valueMatrix4", null); in write()
99 oc.write( (Vector2f)value, "valueVector2", null); in write()
[all …]
DShader.java126 OutputCapsule oc = ex.getCapsule(this); in write() local
127 oc.write(shaderType, "shaderType", null); in write()
128 oc.write(name, "name", null); in write()
129 oc.write(source, "source", null); in write()
130 oc.write(defines, "defines", null); in write()
246 OutputCapsule oc = ex.getCapsule(this); in write() local
247 oc.write(language, "language", null); in write()
248 oc.writeSavableArrayList(shaderList, "shaderList", null); in write()
249 oc.writeIntSavableMap(attribs, "attribs", null); in write()
250 oc.writeStringSavableMap(uniforms, "uniforms", null); in write()
/external/clang/test/CXX/expr/expr.mptr.oper/
Dp5.cpp19 const X0 &oc, in test_object_cvquals() argument
47 …(oc.*pm)(); // expected-error{{call to pointer to member function of type 'void ()' drops 'const' … in test_object_cvquals()
48 (oc.*pmc)(); in test_object_cvquals()
49 …(oc.*pmv)(); // expected-error{{call to pointer to member function of type 'void () volatile' drop… in test_object_cvquals()
50 (oc.*pmcv)(); in test_object_cvquals()
/external/jmonkeyengine/engine/src/blender/com/jme3/asset/
DBlenderKey.java353 OutputCapsule oc = e.getCapsule(this); in write() local
354 oc.write(fps, "fps", DEFAULT_FPS); in write()
355 oc.write(generatedTextureWidth, "generated-texture-width", 20); in write()
356 oc.write(generatedTextureHeight, "generated-texture-height", 20); in write()
357 oc.write(generatedTextureDepth, "generated-texture-depth", 20); in write()
358 oc.write(featuresToLoad, "features-to-load", FeaturesToLoad.ALL); in write()
359 oc.write(loadUnlinkedAssets, "load-unlinked-assets", false); in write()
360 oc.write(assetRootPath, "asset-root-path", null); in write()
361 oc.write(fixUpAxis, "fix-up-axis", true); in write()
362 oc.write(usedWorld, "used-world", null); in write()
[all …]
/external/jmonkeyengine/engine/src/core/com/jme3/effect/
DParticleEmitter.java1097 OutputCapsule oc = ex.getCapsule(this); in write() local
1098 oc.write(shape, "shape", DEFAULT_SHAPE); in write()
1099 oc.write(meshType, "meshType", ParticleMesh.Type.Triangle); in write()
1100 oc.write(enabled, "enabled", true); in write()
1101 oc.write(particles.length, "numParticles", 0); in write()
1102 oc.write(particlesPerSec, "particlesPerSec", 0); in write()
1103 oc.write(lowLife, "lowLife", 0); in write()
1104 oc.write(highLife, "highLife", 0); in write()
1105 oc.write(gravity, "gravity", null); in write()
1106 oc.write(imagesX, "imagesX", 1); in write()
[all …]
/external/jmonkeyengine/engine/src/core/com/jme3/light/
DSpotLight.java195 OutputCapsule oc = ex.getCapsule(this); in write() local
196 oc.write(direction, "direction", new Vector3f()); in write()
197 oc.write(position, "position", new Vector3f()); in write()
198 oc.write(spotInnerAngle, "spotInnerAngle", FastMath.QUARTER_PI / 8); in write()
199 oc.write(spotOuterAngle, "spotOuterAngle", FastMath.QUARTER_PI / 6); in write()
200 oc.write(spotRange, "spotRange", 100); in write()
DLight.java183 OutputCapsule oc = ex.getCapsule(this); in write() local
184 oc.write(color, "color", null); in write()
185 oc.write(enabled, "enabled", true); in write()
186 oc.write(name, "name", null); in write()
/external/jmonkeyengine/engine/src/core-effects/com/jme3/post/filters/
DLightScatteringFilter.java223 OutputCapsule oc = ex.getCapsule(this);
224 oc.write(lightPosition, "lightPosition", Vector3f.ZERO);
225 oc.write(nbSamples, "nbSamples", 50);
226 oc.write(blurStart, "blurStart", 0.02f);
227 oc.write(blurWidth, "blurWidth", 0.9f);
228 oc.write(lightDensity, "lightDensity", 1.4f);
229 oc.write(adaptative, "adaptative", true);
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/test/
Dfinder_unittest.py108 oc = OutputCapture()
109 oc.set_log_level(logging.ERROR)
110 oc.capture_output()
114 _, _, logs = oc.restore_output()
118 oc.capture_output()
122 _, _, logs = oc.restore_output()
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/objects/
DProperties.java316 OutputCapsule oc = ex.getCapsule(this); in write() local
317 oc.write(name, "name", DEFAULT_NAME); in write()
318 oc.write(type, "type", 0); in write()
319 oc.write(subType, "subtype", 0); in write()
320 oc.write(description, "description", null); in write()
323 oc.write((String) value, "value", null); in write()
326 oc.write((Integer) value, "value", 0); in write()
329 oc.write((Float) value, "value", 0); in write()
334 oc.write((int[]) value, "value", null); in write()
337 oc.write((float[]) value, "value", null); in write()
[all …]
/external/jmonkeyengine/engine/src/core/com/jme3/math/
DSpline.java408 OutputCapsule oc = ex.getCapsule(this); in write() local
409 oc.writeSavableArrayList((ArrayList) controlPoints, "controlPoints", null); in write()
410 oc.write(type, "type", SplineType.CatmullRom); in write()
415 oc.write(list, "segmentsLength", null); in write()
417 oc.write(totalLength, "totalLength", 0); in write()
418 oc.writeSavableArrayList((ArrayList) CRcontrolPoints, "CRControlPoints", null); in write()
419 oc.write(curveTension, "curveTension", 0.5f); in write()
420 oc.write(cycle, "cycle", false); in write()
421 oc.writeSavableArrayList((ArrayList<Float>)knots, "knots", null); in write()
422 oc.write(weights, "weights", null); in write()
[all …]

1234567891011