Home
last modified time | relevance | path

Searched refs:target (Results 1 – 25 of 298) sorted by relevance

12345678910>>...12

/device/google/wahoo/lisa/targetdev/
Dpowerhint.py7 def restart_power_hal(target): argument
9 target.execute('pkill -f android\.hardware\.power')
12 def set_touch_param(target, opcode, new_val): argument
18 target.pull(DEVICE_PATH, tmp.name)
27 target.push(tmp.name, DEVICE_PATH)
30 restart_power_hal(target)
33 def set_touch_boost(target, boost=50): argument
38 set_touch_param(target, opcode, boost)
41 def set_touch_min_freq(target, cluster, freq=1100): argument
44 set_touch_param(target, opcode, freq)
[all …]
/device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
Dbase64.c168 b64_ntop(u_char const *src, size_t srclength, char *target, size_t targsize) { in b64_ntop() argument
192 target[datalength++] = Base64[output[0]]; in b64_ntop()
193 target[datalength++] = Base64[output[1]]; in b64_ntop()
194 target[datalength++] = Base64[output[2]]; in b64_ntop()
195 target[datalength++] = Base64[output[3]]; in b64_ntop()
214 target[datalength++] = Base64[output[0]]; in b64_ntop()
215 target[datalength++] = Base64[output[1]]; in b64_ntop()
217 target[datalength++] = Pad64; in b64_ntop()
219 target[datalength++] = Base64[output[2]]; in b64_ntop()
220 target[datalength++] = Pad64; in b64_ntop()
[all …]
/device/lge/bullhead/
DCleanSpec.mk47 $(call add-clean-step, rm -rf $(OUT_DIR)/target/product/bullhead/system/build.prop)
48 $(call add-clean-step, rm -rf $(OUT_DIR)/target/product/bullhead/system/build.prop)
49 $(call add-clean-step, rm -rf $(OUT_DIR)/target/product/bullhead/system/build.prop)
50 $(call add-clean-step, rm -rf $(OUT_DIR)/target/product/bullhead/system/build.prop)
51 $(call add-clean-step, rm -rf $(OUT_DIR)/target/product/bullhead/system/build.prop)
52 $(call add-clean-step, rm -rf $(OUT_DIR)/target/product/bullhead/system/build.prop)
53 $(call add-clean-step, rm -rf $(OUT_DIR)/target/product/bullhead/system/build.prop)
54 $(call add-clean-step, rm -rf $(OUT_DIR)/target/product/bullhead/system/build.prop)
55 $(call add-clean-step, rm -rf $(OUT_DIR)/target/product/bullhead/system/build.prop)
56 $(call add-clean-step, rm -rf $(OUT_DIR)/target/product/bullhead/system/build.prop)
[all …]
/device/generic/goldfish-opengl/shared/OpenglCodecCommon/
DGLClientState.cpp372 int GLClientState::bindBuffer(GLenum target, GLuint id) in bindBuffer() argument
375 switch(target) { in bindBuffer()
418 void GLClientState::bindIndexedBuffer(GLenum target, GLuint index, GLuint buffer, GLintptr offset, … in bindIndexedBuffer() argument
419 switch (target) { in bindIndexedBuffer()
454 int GLClientState::getMaxIndexedBufferBindings(GLenum target) const { in getMaxIndexedBufferBindings()
455 switch (target) { in getMaxIndexedBufferBindings()
469 int GLClientState::getBuffer(GLenum target) { in getBuffer() argument
471 switch (target) { in getBuffer()
715 void GLClientState::enableTextureTarget(GLenum target) in enableTextureTarget() argument
717 switch (target) { in enableTextureTarget()
[all …]
DGLClientState.h71 GLenum target; member
233 int bindBuffer(GLenum target, GLuint id);
234 …void bindIndexedBuffer(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr siz…
235 int getMaxIndexedBufferBindings(GLenum target) const;
237 int getBuffer(GLenum target);
294 void enableTextureTarget(GLenum target);
297 void disableTextureTarget(GLenum target);
315 GLenum bindTexture(GLenum target, GLuint texture, GLboolean* firstUse);
316 void setBoundEGLImage(GLenum target, GLeglImageOES image);
319 GLuint getBoundTexture(GLenum target) const;
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
Dinstall_egg_info.py29 self.target = os.path.join(self.install_dir, basename)
30 self.outputs = [self.target]
33 target = self.target
34 if os.path.isdir(target) and not os.path.islink(target):
35 dir_util.remove_tree(target, dry_run=self.dry_run)
36 elif os.path.exists(target):
37 self.execute(os.unlink,(self.target,),"Removing "+target)
41 log.info("Writing %s", target)
43 f = open(target, 'w')
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/
Ddep_util.py12 def newer(source, target): argument
27 if not os.path.exists(target):
30 return os.stat(source).st_mtime > os.stat(target).st_mtime
44 for source, target in zip(sources, targets):
45 if newer(source, target):
47 n_targets.append(target)
51 def newer_group(sources, target, missing='error'): argument
67 if not os.path.exists(target):
74 target_mtime = os.stat(target).st_mtime
/device/generic/goldfish-opengl/system/GLESv2/
Dgl2.cpp52 void glEGLImageTargetTexture2DOES(void * self, GLenum target, GLeglImageOES img) in glEGLImageTargetTexture2DOES() argument
55 (void)target; in glEGLImageTargetTexture2DOES()
57 DBG("glEGLImageTargetTexture2DOES v2 target=%#x img=%p\n", target, img); in glEGLImageTargetTexture2DOES()
62 if (image->target == EGL_NATIVE_BUFFER_ANDROID) { in glEGLImageTargetTexture2DOES()
77 ctx->override2DTextureTarget(target); in glEGLImageTargetTexture2DOES()
78 ctx->associateEGLImage(target, hostImage); in glEGLImageTargetTexture2DOES()
80 ctx->restore2DTextureTarget(target); in glEGLImageTargetTexture2DOES()
82 else if (image->target == EGL_GL_TEXTURE_2D_KHR) { in glEGLImageTargetTexture2DOES()
84 ctx->override2DTextureTarget(target); in glEGLImageTargetTexture2DOES()
85 ctx->associateEGLImage(target, hostImage); in glEGLImageTargetTexture2DOES()
[all …]
/device/generic/goldfish-opengl/tests/gles_android_wrapper/
Dgles.cpp126 void glGetTexParameterfv(GLenum target, GLenum pname, GLfloat *params) in glGetTexParameterfv() argument
128 getDispatch()->glGetTexParameterfv(target, pname, params); in glGetTexParameterfv()
176 void glMultiTexCoord4f(GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q) in glMultiTexCoord4f() argument
178 getDispatch()->glMultiTexCoord4f(target, s, t, r, q); in glMultiTexCoord4f()
221 void glTexEnvf(GLenum target, GLenum pname, GLfloat param) in glTexEnvf() argument
223 getDispatch()->glTexEnvf(target, pname, param); in glTexEnvf()
226 void glTexEnvfv(GLenum target, GLenum pname, const GLfloat *params) in glTexEnvfv() argument
228 getDispatch()->glTexEnvfv(target, pname, params); in glTexEnvfv()
231 void glTexParameterf(GLenum target, GLenum pname, GLfloat param) in glTexParameterf() argument
233 getDispatch()->glTexParameterf(target, pname, param); in glTexParameterf()
[all …]
/device/generic/goldfish/tools/
Dmk_qemu_image.sh14 target=${dir_name}/$label-qemu.img
16 dd if=/dev/zero of=$target ibs=1024k count=1
17 dd if=$srcimg of=$target conv=notrunc,sync ibs=1024k obs=1024k seek=1
20 curdisksize=$(stat -c %s $target)
22 curdisksize=$(stat -f %z $target)
28 dd if=/dev/zero of=$target conv=notrunc bs=1 count=1024k seek=$curdisksize
33 ${SGDISK:-sgdisk} --clear $target
34 ${SGDISK:-sgdisk} --new=1:2048:$end --type=1:8300 --change-name=1:$label $target
/device/generic/goldfish-opengl/system/GLESv1_enc/
DGLEncoder.cpp350 void GLEncoder::s_glBindBuffer(void *self, GLenum target, GLuint id) in s_glBindBuffer() argument
354 ctx->m_state->bindBuffer(target, id); in s_glBindBuffer()
356 ctx->m_glBindBuffer_enc(self, target, id); in s_glBindBuffer()
359 void GLEncoder::s_glBufferData(void * self, GLenum target, GLsizeiptr size, const GLvoid * data, GL… in s_glBufferData() argument
362 GLuint bufferId = ctx->m_state->getBuffer(target); in s_glBufferData()
367 ctx->m_glBufferData_enc(self, target, size, data, usage); in s_glBufferData()
370 void GLEncoder::s_glBufferSubData(void * self, GLenum target, GLintptr offset, GLsizeiptr size, con… in s_glBufferSubData() argument
373 GLuint bufferId = ctx->m_state->getBuffer(target); in s_glBufferSubData()
379 ctx->m_glBufferSubData_enc(self, target, offset, size, data); in s_glBufferSubData()
649 void GLEncoder::s_glBindTexture(void* self, GLenum target, GLuint texture) in s_glBindTexture() argument
[all …]
DGLEncoder.h47 void override2DTextureTarget(GLenum target);
134 static void s_glBindBuffer(void *self, GLenum target, GLuint id);
135 …static void s_glBufferData(void *self, GLenum target, GLsizeiptr size, const GLvoid * data, GLenum…
136 …static void s_glBufferSubData(void *self, GLenum target, GLintptr offset, GLsizeiptr size, const G…
147 static void s_glBindTexture(void* self, GLenum target, GLuint texture);
151 static void s_glGetTexParameterfv(void* self, GLenum target, GLenum pname, GLfloat* params);
152 static void s_glGetTexParameteriv(void* self, GLenum target, GLenum pname, GLint* params);
153 static void s_glGetTexParameterxv(void* self, GLenum target, GLenum pname, GLfixed* params);
154 static void s_glTexParameterf(void* self, GLenum target, GLenum pname, GLfloat param);
155 static void s_glTexParameterfv(void* self, GLenum target, GLenum pname, const GLfloat* params);
[all …]
Dgl_entry.cpp22 void glGetTexParameterfv(GLenum target, GLenum pname, GLfloat* params);
32 void glMultiTexCoord4f(GLenum target, GLfloat s, GLfloat t, GLfloat r, GLfloat q);
41 void glTexEnvf(GLenum target, GLenum pname, GLfloat param);
42 void glTexEnvfv(GLenum target, GLenum pname, const GLfloat* params);
43 void glTexParameterf(GLenum target, GLenum pname, GLfloat param);
44 void glTexParameterfv(GLenum target, GLenum pname, const GLfloat* params);
48 void glBindBuffer(GLenum target, GLuint buffer);
49 void glBindTexture(GLenum target, GLuint texture);
51 void glBufferData(GLenum target, GLsizeiptr size, const GLvoid* data, GLenum usage);
52 void glBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid* data);
[all …]
/device/generic/goldfish-opengl/system/egl/
DClientAPIExts.in9 (GLenum target, GLeglImageOES image),
10 (target, image))
13 (GLenum target, GLeglImageOES image),
14 (target, image))
114 (GLenum target, GLuint renderbuffer),
115 (target, renderbuffer))
126 (GLenum target, GLenum internalformat, GLsizei width, GLsizei height),
127 (target, internalformat, width, height))
130 (GLenum target, GLenum pname, GLint* params),
131 (target, pname, params))
[all …]
/device/generic/goldfish-opengl/system/GLESv2_enc/
DGL2Encoder.cpp96 #define OVERRIDEWITH(name, target) do { \ in GL2Encoder() argument
97 m_##target##_enc = this-> target; \ in GL2Encoder()
98 this-> target = &s_##name; \ in GL2Encoder()
411 ScopedQueryUpdate(GL2Encoder* ctx, uint32_t bytes, T* target) : in ScopedQueryUpdate() argument
414 mTarget(target), in ScopedQueryUpdate()
514 void GL2Encoder::s_glBindBuffer(void *self, GLenum target, GLuint id) in s_glBindBuffer() argument
518 ctx->m_state->bindBuffer(target, id); in s_glBindBuffer()
521 ctx->m_glBindBuffer_enc(self, target, id); in s_glBindBuffer()
524 void GL2Encoder::s_glBufferData(void * self, GLenum target, GLsizeiptr size, const GLvoid * data, G… in s_glBufferData() argument
527 SET_ERROR_IF(!GLESv2Validation::bufferTarget(ctx, target), GL_INVALID_ENUM); in s_glBufferData()
[all …]
Dgl2_entry.cpp11 void glBindBuffer(GLenum target, GLuint buffer);
12 void glBindFramebuffer(GLenum target, GLuint framebuffer);
13 void glBindRenderbuffer(GLenum target, GLuint renderbuffer);
14 void glBindTexture(GLenum target, GLuint texture);
20 void glBufferData(GLenum target, GLsizeiptr size, const GLvoid* data, GLenum usage);
21 void glBufferSubData(GLenum target, GLintptr offset, GLsizeiptr size, const GLvoid* data);
22 GLenum glCheckFramebufferStatus(GLenum target);
29 …void glCompressedTexImage2D(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsi…
30 …void glCompressedTexSubImage2D(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei w…
31 …void glCopyTexImage2D(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei…
[all …]
DGL2Encoder.h75 void override2DTextureTarget(GLenum target);
76 void restore2DTextureTarget(GLenum target);
77 void associateEGLImage(GLenum target, GLeglImageOES eglImage);
80 GLuint boundBuffer(GLenum target) const;
81 BufferData* getBufferData(GLenum target) const;
84 bool isBufferTargetMapped(GLenum target) const;
134 bool texture2DNeedsOverride(GLenum target) const;
135 bool isCompleteFbo(GLenum target, const GLClientState* state, GLenum attachment) const;
136 bool checkFramebufferCompleteness(GLenum target, const GLClientState* state) const;
166 static void s_glBindBuffer(void *self, GLenum target, GLuint id);
[all …]
/device/generic/goldfish-opengl/system/GLESv1/
Dgl.cpp52 void glEGLImageTargetTexture2DOES(void * self, GLenum target, GLeglImageOES img) in glEGLImageTargetTexture2DOES() argument
56 DBG("glEGLImageTargetTexture2DOES v1 target=%#x img=%p", target, img); in glEGLImageTargetTexture2DOES()
60 if (image->target == EGL_NATIVE_BUFFER_ANDROID) { in glEGLImageTargetTexture2DOES()
75 ctx->override2DTextureTarget(target); in glEGLImageTargetTexture2DOES()
80 else if (image->target == EGL_GL_TEXTURE_2D_KHR) { in glEGLImageTargetTexture2DOES()
82 ctx->override2DTextureTarget(target); in glEGLImageTargetTexture2DOES()
84 ctx->m_glEGLImageTargetTexture2DOES_enc(self, target, hostImage); in glEGLImageTargetTexture2DOES()
89 void glEGLImageTargetRenderbufferStorageOES(void *self, GLenum target, GLeglImageOES image) in glEGLImageTargetRenderbufferStorageOES() argument
92 (void)target; in glEGLImageTargetRenderbufferStorageOES()
95 target, image); in glEGLImageTargetRenderbufferStorageOES()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/
Dfix_paren.py38 target = results["target"]
41 lparen.prefix = target.prefix
42 target.prefix = u"" # Make it hug the parentheses
43 target.insert_child(0, lparen)
44 target.append_child(RParen())
/device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/
Dbld_vlv.sh43 if [ -e $(pwd)/Conf/target.txt ]; then
44 rm $(pwd)/Conf/target.txt
174 sed -i '/^ACTIVE_PLATFORM/d' Conf/target.txt
175 sed -i '/^TARGET /d' Conf/target.txt
176 sed -i '/^TARGET_ARCH/d' Conf/target.txt
177 sed -i '/^TOOL_CHAIN_TAG/d' Conf/target.txt
178 sed -i '/^MAX_CONCURRENT_THREAD_NUMBER/d' Conf/target.txt
183 echo ACTIVE_PLATFORM = $ACTIVE_PLATFORM >> Conf/target.txt
184 echo TARGET = $TARGET >> Conf/target.txt
185 echo TOOL_CHAIN_TAG = $TOOL_CHAIN_TAG >> Conf/target.txt
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
Dtest_dir_util.py28 self.target = os.path.join(self.root_target, 'here')
39 mkpath(self.target, verbose=0)
44 mkpath(self.target, verbose=1)
46 'creating %s' % self.target]
60 mkpath(self.target, 0o700)
62 stat.S_IMODE(os.stat(self.target).st_mode), 0o700 & ~umask)
82 mkpath(self.target, verbose=0)
84 copy_tree(self.target, self.target2, verbose=0)
89 mkpath(self.target, verbose=0)
90 a_file = os.path.join(self.target, 'ok.txt')
[all …]
Dtest_build_scripts.py30 target = self.mkdtemp()
33 cmd = self.get_build_scripts_cmd(target,
39 built = os.listdir(target)
43 def get_build_scripts_cmd(self, target, scripts): argument
48 build_scripts=target,
82 target = self.mkdtemp()
86 cmd = self.get_build_scripts_cmd(target,
104 built = os.listdir(target)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/freeze/
Dmakemakefile.py5 def makemakefile(outfp, makevars, files, target): argument
12 outfp.write("\nall: %s\n\n" % target)
25 outfp.write("\n%s: %s\n" % (target, ' '.join(deps)))
27 (' '.join(files), target))
29 outfp.write("\nclean:\n\t-rm -f *.o %s\n" % target)
/device/generic/goldfish-opengl/system/include/GLES/
Dglext.h635 GL_API void GL_APIENTRY glEGLImageTargetTexture2DOES (GLenum target, GLeglImageOES image);
636 GL_API void GL_APIENTRY glEGLImageTargetRenderbufferStorageOES (GLenum target, GLeglImageOES image);
638 typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETTEXTURE2DOESPROC) (GLenum target, GLeglImageOES image…
639 typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETRENDERBUFFERSTORAGEOESPROC) (GLenum target, GLeglImag…
681 GL_API void GL_APIENTRY glGetTexParameterxvOES (GLenum target, GLenum pname, GLfixed *params);
691 GL_API void GL_APIENTRY glMultiTexCoord4xOES (GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfix…
701 GL_API void GL_APIENTRY glTexEnvxOES (GLenum target, GLenum pname, GLfixed param);
702 GL_API void GL_APIENTRY glTexEnvxvOES (GLenum target, GLenum pname, const GLfixed *params);
703 GL_API void GL_APIENTRY glTexParameterxOES (GLenum target, GLenum pname, GLfixed param);
704 GL_API void GL_APIENTRY glTexParameterxvOES (GLenum target, GLenum pname, const GLfixed *params);
[all …]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_pstats.py14 target = {"a": (1, 2, 3, 4)}
16 new_callers = pstats.add_callers(target, source)
19 target = {"a": 1}
21 new_callers = pstats.add_callers(target, source)

12345678910>>...12