/external/llvm/bindings/ocaml/transforms/vectorize/ |
llvm_vectorize.ml | 10 external add_bb_vectorize : [<Llvm.PassManager.any] Llvm.PassManager.t -> unit 12 external add_loop_vectorize : [<Llvm.PassManager.any] Llvm.PassManager.t -> unit 14 external add_slp_vectorize : [<Llvm.PassManager.any] Llvm.PassManager.t -> unit
|
/external/mesa3d/src/mesa/main/ |
samplerobj.h | 32 _mesa_get_samplerobj(struct gl_context *ctx, GLuint unit) 34 if (ctx->Texture.Unit[unit].Sampler) 35 return ctx->Texture.Unit[unit].Sampler; 36 else if (ctx->Texture.Unit[unit]._Current) 37 return &ctx->Texture.Unit[unit]._Current->Sampler; 83 _mesa_BindSampler(GLuint unit, GLuint sampler) [all...] |
/external/chromium_org/tools/telemetry/telemetry/unittest/ |
gtest_progress_reporter.py | 40 unit = 'test' if test_count == 1 else 'tests' 41 self._Print('[----------]', test_count, unit) 49 unit = 'test' if test_count == 1 else 'tests' 51 self._Print('[----------]', test_count, unit, 56 unit = 'test' if len(result.successes) == 1 else 'tests' 57 self._Print('[ PASSED ]', len(result.successes), '%s.' % unit) 61 unit = 'test' if len(all_errors) == 1 else 'tests' 62 self._Print('[ FAILED ]', len(all_errors), '%s, listed below:' % unit) 68 unit = 'TEST' if count == 1 else 'TESTS' 69 self._Print(count, 'FAILED', unit) [all...] |
/external/chromium_org/gpu/command_buffer/service/ |
context_state.cc | 31 GLuint Get2dServiceId(const TextureUnit& unit) { 32 return unit.bound_texture_2d.get() 33 ? unit.bound_texture_2d->service_id() : 0; 36 GLuint GetCubeServiceId(const TextureUnit& unit) { 37 return unit.bound_texture_cube_map.get() 38 ? unit.bound_texture_cube_map->service_id() : 0; 41 GLuint GetOesServiceId(const TextureUnit& unit) { 42 return unit.bound_texture_external_oes.get() 43 ? unit.bound_texture_external_oes->service_id() : 0; 46 GLuint GetArbServiceId(const TextureUnit& unit) { [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/ |
draw_llvm_sample.c | 89 unsigned unit, 101 debug_assert(unit < PIPE_MAX_SAMPLERS); 107 /* context[0].textures[unit] */ 108 indices[2] = lp_build_const_int32(gallivm, unit); 109 /* context[0].textures[unit].member */ 119 lp_build_name(res, "context.texture%u.%s", unit, member_name); 138 unsigned unit) \ 140 return draw_llvm_texture_member(base, gallivm, unit, _index, #_name, _emit_load ); \ 173 unsigned unit, 183 assert(unit < PIPE_MAX_SAMPLERS) [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/ |
lp_tex_sample.c | 94 unsigned unit, 106 assert(unit < PIPE_MAX_SAMPLERS); 112 /* context[0].textures[unit] */ 113 indices[2] = lp_build_const_int32(gallivm, unit); 114 /* context[0].textures[unit].member */ 124 lp_build_name(res, "context.texture%u.%s", unit, member_name); 143 unsigned unit) \ 145 return lp_llvm_texture_member(base, gallivm, unit, _index, #_name, _emit_load ); \ 178 unsigned unit, 188 assert(unit < PIPE_MAX_SAMPLERS) [all...] |
/external/mesa3d/src/gallium/auxiliary/draw/ |
draw_llvm_sample.c | 89 unsigned unit, 101 debug_assert(unit < PIPE_MAX_SAMPLERS); 107 /* context[0].textures[unit] */ 108 indices[2] = lp_build_const_int32(gallivm, unit); 109 /* context[0].textures[unit].member */ 119 lp_build_name(res, "context.texture%u.%s", unit, member_name); 138 unsigned unit) \ 140 return draw_llvm_texture_member(base, gallivm, unit, _index, #_name, _emit_load ); \ 173 unsigned unit, 183 assert(unit < PIPE_MAX_SAMPLERS) [all...] |
/external/mesa3d/src/gallium/drivers/llvmpipe/ |
lp_tex_sample.c | 94 unsigned unit, 106 assert(unit < PIPE_MAX_SAMPLERS); 112 /* context[0].textures[unit] */ 113 indices[2] = lp_build_const_int32(gallivm, unit); 114 /* context[0].textures[unit].member */ 124 lp_build_name(res, "context.texture%u.%s", unit, member_name); 143 unsigned unit) \ 145 return lp_llvm_texture_member(base, gallivm, unit, _index, #_name, _emit_load ); \ 178 unsigned unit, 188 assert(unit < PIPE_MAX_SAMPLERS) [all...] |
/external/llvm/bindings/ocaml/executionengine/ |
llvm_executionengine.ml | 13 external register_exns: exn -> unit 65 external dispose: t -> unit 67 external add_module: Llvm.llmodule -> t -> unit 76 external run_static_ctors: t -> unit 78 external run_static_dtors: t -> unit 83 external free_machine_code: Llvm.llvalue -> t -> unit 91 add_global_mapping: llvalue -> llgenericvalue -> t -> unit 92 clear_all_global_mappings: t -> unit 93 update_global_mapping: llvalue -> llgenericvalue -> t -> unit 99 store_value_to_memory: llgenericvalue -> llgenericvalue -> lltype -> unit [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/ |
radeon_maos_arrays.c | 151 GLuint vtx, unit; local 251 for (unit = 0; unit < ctx->Const.MaxTextureUnits; unit++) { 252 if (inputs & VERT_BIT_TEX(unit)) { 253 if (!rmesa->tcl.tex[unit].buf) 256 (char *)VB->AttribPtr[_TNL_ATTRIB_TEX0 + unit]->data, 257 VB->AttribPtr[_TNL_ATTRIB_TEX0 + unit]->size, 258 VB->AttribPtr[_TNL_ATTRIB_TEX0 + unit]->stride, 262 vfmt |= RADEON_ST_BIT(unit); [all...] |
/external/jemalloc/ |
Android.mk | 124 # jemalloc unit test library 155 # jemalloc unit tests 158 test/unit/bitmap.c \ 159 test/unit/ckh.c \ 160 test/unit/hash.c \ 161 test/unit/junk.c \ 162 test/unit/mallctl.c \ 163 test/unit/math.c \ 164 test/unit/mq.c \ 165 test/unit/mtx.c [all...] |
/external/mesa3d/src/mesa/drivers/dri/radeon/ |
radeon_maos_arrays.c | 151 GLuint vtx, unit; local 251 for (unit = 0; unit < ctx->Const.MaxTextureUnits; unit++) { 252 if (inputs & VERT_BIT_TEX(unit)) { 253 if (!rmesa->tcl.tex[unit].buf) 256 (char *)VB->AttribPtr[_TNL_ATTRIB_TEX0 + unit]->data, 257 VB->AttribPtr[_TNL_ATTRIB_TEX0 + unit]->size, 258 VB->AttribPtr[_TNL_ATTRIB_TEX0 + unit]->stride, 262 vfmt |= RADEON_ST_BIT(unit); [all...] |
/external/clang/test/ |
Makefile | 32 all:: lit.site.cfg Unit/lit.site.cfg 57 Unit/lit.site.cfg: FORCE 58 @echo "Making Clang 'Unit/lit.site.cfg' file..." 60 @$(ECHOPATH) s=@LLVM_SOURCE_DIR@=$(LLVM_SRC_ROOT)=g > unit.tmp 61 @$(ECHOPATH) s=@LLVM_BINARY_DIR@=$(LLVM_OBJ_ROOT)=g >> unit.tmp 62 @$(ECHOPATH) s=@LLVM_TOOLS_DIR@=$(ToolDir)=g >> unit.tmp 63 @$(ECHOPATH) s=@LLVM_LIBS_DIR@=$(LibDir)=g >> unit.tmp 64 @$(ECHOPATH) s=@CLANG_SOURCE_DIR@=$(PROJ_SRC_DIR)/..=g >> unit.tmp 65 @$(ECHOPATH) s=@CLANG_BINARY_DIR@=$(PROJ_OBJ_DIR)/..=g >> unit.tmp 66 @$(ECHOPATH) s=@TARGET_TRIPLE@=$(TARGET_TRIPLE)=g >> unit.tm [all...] |
/external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/ |
CallbackHelper.java | 169 * @param unit timeout unit. 174 TimeUnit unit) throws InterruptedException, TimeoutException { 181 mLock.wait(unit.toMillis(timeout)); 204 * @param unit timeout unit. 206 public void waitUntilCriteria(Criteria criteria, long timeout, TimeUnit unit) 212 SystemClock.uptimeMillis() - startTime < unit.toMillis(timeout)) { 213 mLock.wait(unit.toMillis(timeout));
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/ |
i830_texblend.c | 97 GetTexelOp(GLint unit) 99 switch (unit) { 353 * tex unit, and put last stage on it 389 emit_texblend(struct i830_context *i830, GLuint unit, GLuint blendUnit, 392 struct gl_texture_unit *texUnit = &i830->intel.ctx.Texture.Unit[unit]; 397 fprintf(stderr, "%s unit %d\n", __FUNCTION__, unit); 402 GetTexelOp(unit), tmp, texUnit->EnvColor); 423 GLuint unit = 0 local 443 GLuint unit, last_stage = 0, blendunit = 0; local [all...] |
/external/mesa3d/src/mesa/drivers/dri/i915/ |
i830_texblend.c | 97 GetTexelOp(GLint unit) 99 switch (unit) { 353 * tex unit, and put last stage on it 389 emit_texblend(struct i830_context *i830, GLuint unit, GLuint blendUnit, 392 struct gl_texture_unit *texUnit = &i830->intel.ctx.Texture.Unit[unit]; 397 fprintf(stderr, "%s unit %d\n", __FUNCTION__, unit); 402 GetTexelOp(unit), tmp, texUnit->EnvColor); 423 GLuint unit = 0 local 443 GLuint unit, last_stage = 0, blendunit = 0; local [all...] |
/bionic/tests/ |
Android.mk | 22 # Unit tests. 220 # adb shell /data/nativetest/bionic-unit-tests/bionic-unit-tests32 221 # adb shell /data/nativetest/bionic-unit-tests/bionic-unit-tests64 223 bionic-unit-tests_whole_static_libraries := \ 226 bionic-unit-tests_src_files := \ 231 bionic-unit-tests_cflags := $(test_cflags) 233 bionic-unit-tests_conlyflags := \ 237 bionic-unit-tests_cppflags := $(test_cppflags [all...] |
/development/ndk/platforms/android-3/include/linux/ |
ftape.h | 32 #define FTAPE_SEL(unit) ((unit) & FTAPE_SEL_MASK)
|
/external/chromium_org/extensions/browser/api/system_storage/ |
storage_info_provider.cc | 27 void BuildStorageUnitInfo(const StorageInfo& info, StorageUnitInfo* unit) { 28 unit->id = StorageMonitor::GetInstance()->GetTransientIdForDeviceId( 30 unit->name = base::UTF16ToUTF8(info.GetDisplayName(false)); 32 unit->type = StorageInfo::IsRemovableDevice(info.device_id()) 35 unit->capacity = static_cast<double>(info.total_size_in_bytes()); 89 linked_ptr<StorageUnitInfo> unit(new StorageUnitInfo()); 90 systeminfo::BuildStorageUnitInfo(*it, unit.get()); 91 info_.push_back(unit);
|
/external/chromium_org/third_party/icu/source/i18n/unicode/ |
measure.h | 30 * An amount of a specified unit, consisting of a number and a Unit. 32 * unit, such as feet or meters. This is an abstract class. 33 * Subclasses specify a concrete Unit type. 49 * unit. After this call, the caller must not delete the given 50 * unit object. 52 * @param adoptedUnit the unit object, which must not be NULL 53 * @param ec input-output error code. If the amount or the unit 101 * Return a reference to the unit of this object. 120 * The unit of this object, e.g., "millimeter" or "JPY". This i 123 MeasureUnit* unit; member in class:Measure [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/r200/ |
r200_tex.h | 51 extern void r200TexUpdateParameters(struct gl_context *ctx, GLuint unit); 53 extern void set_re_cntl_d3d( struct gl_context *ctx, int unit, GLboolean use_d3d );
|
/external/icu/icu4c/source/i18n/unicode/ |
measure.h | 30 * An amount of a specified unit, consisting of a number and a Unit. 32 * unit, such as feet or meters. 45 * unit. After this call, the caller must not delete the given 46 * unit object. 48 * @param adoptedUnit the unit object, which must not be NULL 49 * @param ec input-output error code. If the amount or the unit 97 * Return a reference to the unit of this object. 142 * The unit of this object, e.g., "millimeter" or "JPY". This is 145 MeasureUnit* unit; member in class:Measure [all...] |
/external/mesa3d/src/mesa/drivers/dri/r200/ |
r200_tex.h | 51 extern void r200TexUpdateParameters(struct gl_context *ctx, GLuint unit); 53 extern void set_re_cntl_d3d( struct gl_context *ctx, int unit, GLboolean use_d3d );
|
/external/ltrace/sysdeps/linux-gnu/metag/ |
trace.c | 38 /* unit codes */ 109 /* 2-bit base unit (BU) mapping. */ 118 get_regval_from_unit(enum metag_unitnum unit, unsigned int reg, 126 if ((unit == METAG_UNIT_A0) || (unit == METAG_UNIT_A1)) { 129 } else if ((unit == METAG_UNIT_D0) || (unit == METAG_UNIT_D1)) { 134 switch(unit) { 145 assert(unit != unit); 163 unsigned int unit = 0, reg; local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/ |
lp_bld_sample.h | 122 unsigned unit); 128 unsigned unit); 134 unsigned unit); 140 unsigned unit); 146 unsigned unit); 152 unsigned unit); 158 unsigned unit); 164 unsigned unit); 169 struct gallivm_state *gallivm, unsigned unit); 174 struct gallivm_state *gallivm, unsigned unit); [all...] |