HomeSort by relevance Sort by last modified time
    Searched defs:target (Results 501 - 525 of 4780) sorted by null

<<21222324252627282930>>

  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_mipmap_tree.h 68 GLenum target; /** GL_TEXTURE_xxx */ member in struct:_radeon_mipmap_tree
94 unsigned get_texture_image_row_stride(radeonContextPtr rmesa, mesa_format format, unsigned width, unsigned tiling, unsigned target);
104 GLenum target, mesa_format mesaFormat, GLuint baseLevel, GLuint numLevels,
  /external/mesa3d/src/mesa/main/
vdpau.c 47 GLenum target; member in struct:vdp_surface
114 const GLvoid *vdpSurface, GLenum target,
125 if (target != GL_TEXTURE_2D && target != GL_TEXTURE_RECTANGLE) {
130 if (target == GL_TEXTURE_RECTANGLE && !ctx->Extensions.NV_texture_rectangle) {
142 surf->target = target;
166 if (tex->Target == 0) {
167 tex->Target = target;
    [all...]
  /external/mesa3d/src/mesa/vbo/
vbo_save_loopback.c 40 typedef void (*attr_func)( struct gl_context *ctx, GLint target, const GLfloat * );
47 static void VertexAttrib1fvNV(struct gl_context *ctx, GLint target, const GLfloat *v)
49 CALL_VertexAttrib1fvNV(ctx->Exec, (target, v));
52 static void VertexAttrib2fvNV(struct gl_context *ctx, GLint target, const GLfloat *v)
54 CALL_VertexAttrib2fvNV(ctx->Exec, (target, v));
57 static void VertexAttrib3fvNV(struct gl_context *ctx, GLint target, const GLfloat *v)
59 CALL_VertexAttrib3fvNV(ctx->Exec, (target, v));
62 static void VertexAttrib4fvNV(struct gl_context *ctx, GLint target, const GLfloat *v)
64 CALL_VertexAttrib4fvNV(ctx->Exec, (target, v));
75 GLint target; member in struct:loopback_attr
    [all...]
  /external/mockito/src/test/java/org/mockitousage/bugs/
ConcurrentModificationExceptionOnMultiThreadedVerificationTest.java 31 ITarget target = Mockito.mock(ITarget.class); field in class:ConcurrentModificationExceptionOnMultiThreadedVerificationTest
36 target = Mockito.mock(ITarget.class);
45 reset(target);
48 verify(target, timeout(expectedMaxTestLength).times(TIMES * nThreads)).targetMethod("arg");
49 verifyNoMoreInteractions(target);
72 target.targetMethod("arg");
  /external/mockito/subprojects/android/src/main/java/org/mockito/android/internal/creation/
AndroidTempFileLocator.java 14 final static File target; field in class:AndroidTempFileLocator
19 String user = System.getProperty("org.mockito.android.target");
46 target = t;
  /external/pdfium/fxjs/xfa/
cjx_eventpseudomodel.cpp 147 void CJX_EventPseudoModel::target(CFXJSE_Value* pValue, function in class:CJX_EventPseudoModel
150 Property(pValue, XFA_Event::Target, bSetting);
251 case XFA_Event::Target:
  /external/protobuf/src/google/protobuf/stubs/
statusor_test.cc 121 StatusOr<int> target; local
122 target = source;
123 EXPECT_EQ(source.status(), target.status());
124 EXPECT_EQ(source.ValueOrDie(), target.ValueOrDie());
129 StatusOr<int> target; local
130 target = source;
131 EXPECT_EQ(source.status(), target.status());
137 StatusOr<double> target; local
138 target = source;
139 EXPECT_EQ(source.status(), target.status())
145 StatusOr<double> target; local
221 StatusOr<const int*> target; local
229 StatusOr<int*> target; local
237 StatusOr<Base2*> target; local
246 StatusOr<Base2*> target; local
    [all...]
  /external/python/cpython3/PCbuild/
build.bat 18 echo. -r Target Rebuild instead of Build
43 echo. Set the target manually
53 set target=Build variable
69 if "%~1"=="-r" (set target=Rebuild) & shift & goto CheckOpts variable
70 if "%~1"=="-t" (set target=%2) & shift & shift & goto CheckOpts variable
127 set target=Build variable
144 msbuild "%dir%pcbuild.proj" /t:%target% %parallel% %verbose%^
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowMessage.java 16 private Handler target; field in class:ShadowMessage
28 public void setTarget(Handler target) {
29 this.target = target;
47 return target;
110 target.sendMessage(message);
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowMessageQueue.java 157 final Handler target = msg.getTarget(); local
160 // If target is null it means the message has been removed
162 if (target != null) {
164 target.dispatchMessage(msg);
  /external/skia/gm/
drawatlascolor.cpp 71 const SkRect target = SkRect::MakeWH(SkIntToScalar(kAtlasSize), SkIntToScalar(kAtlasSize)); variable
126 xforms[i].set(1.0f, 0.0f, SkIntToScalar(kPad), i*(target.width()+kPad));
127 rects[i] = target;
139 i*(target.width()+kPad)+kPad, SkIntToScalar(kTextPad),
145 canvas->translate(SkIntToScalar(i*(target.height()+kPad)),
150 canvas->translate(0.0f, numColors*(target.height()+kPad));
  /external/skia/src/gpu/gl/
GrGLBuffer.cpp 104 GrGLenum target = gpu->bindBuffer(fIntendedType, this); local
107 GL_ALLOC_CALL(gpu->glInterface(), BufferData(target,
176 GrGLenum target = this->glGpu()->bindBuffer(fIntendedType, this); local
179 GL_CALL(BufferData(target, this->sizeInBytes(), nullptr, fUsage));
181 GL_CALL_RET(fMapPtr, MapBuffer(target, readOnly ? GR_GL_READ_ONLY : GR_GL_WRITE_ONLY));
185 GrGLenum target = this->glGpu()->bindBuffer(fIntendedType, this); local
188 GL_CALL(BufferData(target, this->sizeInBytes(), nullptr, fUsage));
195 GL_CALL_RET(fMapPtr, MapBufferRange(target, 0, this->sizeInBytes(),
200 GrGLenum target = this->glGpu()->bindBuffer(fIntendedType, this); local
203 GL_CALL(BufferData(target, this->sizeInBytes(), nullptr, fUsage))
233 GrGLenum target = this->glGpu()->bindBuffer(fIntendedType, this); local
258 GrGLenum target = this->glGpu()->bindBuffer(fIntendedType, this); local
    [all...]
  /external/skia/src/sfnt/
SkOTTable_name.cpp 523 const BCP47FromLanguageId target = { languageID, "" }; local
525 BCP47FromLanguageID, SK_ARRAY_COUNT(BCP47FromLanguageID), target, sizeof(target));
  /external/skia/src/views/
SkView.cpp 71 SkView::Click::Click(SkView* target) {
72 SkASSERT(target);
73 fTargetID = target->getSinkID();
89 SkView* target = (SkView*)SkEventSink::FindSink(click->fTargetID); local
90 if (nullptr == target) {
102 target->onClick(click);
108 SkView* target = (SkView*)SkEventSink::FindSink(click->fTargetID); local
109 if (nullptr == target) {
121 target->onClick(click);
127 SkView* target = (SkView*)SkEventSink::FindSink(click->fTargetID) local
    [all...]
  /external/skqp/gm/
drawatlascolor.cpp 71 const SkRect target = SkRect::MakeWH(SkIntToScalar(kAtlasSize), SkIntToScalar(kAtlasSize)); variable
126 xforms[i].set(1.0f, 0.0f, SkIntToScalar(kPad), i*(target.width()+kPad));
127 rects[i] = target;
139 i*(target.width()+kPad)+kPad, SkIntToScalar(kTextPad),
145 canvas->translate(SkIntToScalar(i*(target.height()+kPad)),
150 canvas->translate(0.0f, numColors*(target.height()+kPad));
  /external/skqp/src/gpu/gl/
GrGLBuffer.cpp 104 GrGLenum target = gpu->bindBuffer(fIntendedType, this); local
107 GL_ALLOC_CALL(gpu->glInterface(), BufferData(target,
176 GrGLenum target = this->glGpu()->bindBuffer(fIntendedType, this); local
179 GL_CALL(BufferData(target, this->sizeInBytes(), nullptr, fUsage));
181 GL_CALL_RET(fMapPtr, MapBuffer(target, readOnly ? GR_GL_READ_ONLY : GR_GL_WRITE_ONLY));
185 GrGLenum target = this->glGpu()->bindBuffer(fIntendedType, this); local
188 GL_CALL(BufferData(target, this->sizeInBytes(), nullptr, fUsage));
195 GL_CALL_RET(fMapPtr, MapBufferRange(target, 0, this->sizeInBytes(),
200 GrGLenum target = this->glGpu()->bindBuffer(fIntendedType, this); local
203 GL_CALL(BufferData(target, this->sizeInBytes(), nullptr, fUsage))
233 GrGLenum target = this->glGpu()->bindBuffer(fIntendedType, this); local
258 GrGLenum target = this->glGpu()->bindBuffer(fIntendedType, this); local
    [all...]
  /external/skqp/src/sfnt/
SkOTTable_name.cpp 523 const BCP47FromLanguageId target = { languageID, "" }; local
525 BCP47FromLanguageID, SK_ARRAY_COUNT(BCP47FromLanguageID), target, sizeof(target));
  /external/skqp/src/views/
SkView.cpp 71 SkView::Click::Click(SkView* target) {
72 SkASSERT(target);
73 fTargetID = target->getSinkID();
89 SkView* target = (SkView*)SkEventSink::FindSink(click->fTargetID); local
90 if (nullptr == target) {
102 target->onClick(click);
108 SkView* target = (SkView*)SkEventSink::FindSink(click->fTargetID); local
109 if (nullptr == target) {
121 target->onClick(click);
127 SkView* target = (SkView*)SkEventSink::FindSink(click->fTargetID) local
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/Format/
PackedSwitchMethodItem.java 93 for (PackedSwitchTarget target: targets) {
94 target.writeTargetTo(writer);
109 private final LabelMethodItem target; field in class:PackedSwitchMethodItem.PackedSwitchLabelTarget
110 public PackedSwitchLabelTarget(LabelMethodItem target) {
111 this.target = target;
114 target.writeTo(writer);
119 private final int target; field in class:PackedSwitchMethodItem.PackedSwitchOffsetTarget
120 public PackedSwitchOffsetTarget(int target) {
121 this.target = target
    [all...]
SparseSwitchMethodItem.java 79 for (SparseSwitchTarget target: targets) {
80 IntegerRenderer.writeTo(writer, target.getKey());
82 target.writeTargetTo(writer);
83 writeCommentIfResourceId(writer, target.getKey());
101 private final LabelMethodItem target; field in class:SparseSwitchMethodItem.SparseSwitchLabelTarget
102 public SparseSwitchLabelTarget(int key, LabelMethodItem target) {
104 this.target = target;
108 target.writeTo(writer);
113 private final int target; field in class:SparseSwitchMethodItem.SparseSwitchOffsetTarget
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
PathProfileVerifier.cpp 138 BasicBlock* target = nextEdge->getTarget(); local
141 << "}--> " << target->getNameStr());
149 } else if( !arrayMap[source].count(target) ) {
150 errs() << " error [" << F->getNameStr() << "()]: target '"
151 << target->getNameStr()
153 } else if( !arrayMap[source][target].count(duplicateNumber) ) {
155 << source->getNameStr() << " -> " << target->getNameStr()
159 edgeArray[arrayMap[source][target][duplicateNumber]]
  /external/tensorflow/tensorflow/compiler/aot/
embedded_protocol_buffers.cc 28 #include "llvm/Target/TargetMachine.h"
29 #include "llvm/Target/TargetOptions.h"
107 const llvm::Target* target = local
109 if (target == nullptr) {
114 return WrapUnique(target->createTargetMachine(
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
disassembler.cc 163 uint64_t target; local
165 instruction, section_address + index, size, target)) {
166 annotation = tensorflow::strings::Printf("[0x%08lx]", target);
  /external/tensorflow/tensorflow/core/distributed_runtime/
cluster_function_library_runtime.cc 32 const string& target = options.target; local
52 .Attr("send_device", target)
53 .Attr("recv_device", target)
56 .Device(target)
61 target, 1 /* src_incarnation */, target, in.name(), FrameAndIter(0, 0));
74 function_node->set_device(target);
98 .Attr("send_device", target)
99 .Attr("recv_device", target)
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
function_ops.cc 296 const Tensor* target; variable
297 OP_REQUIRES_OK_ASYNC(ctx, ctx->input("target", &target), done);
299 DeviceNameUtils::CanonicalizeDeviceName(target->scalar<string>()());
307 instantiate_opts.target = target_device;
351 Name("RemoteCall").Device(DEVICE_CPU).HostMemory("target"), RemoteCallOp);
353 Name("RemoteCall").Device(DEVICE_GPU).HostMemory("target"), RemoteCallOp);
356 Name("RemoteCall").Device(DEVICE_SYCL).HostMemory("target"), RemoteCallOp);

Completed in 1369 milliseconds

<<21222324252627282930>>