HomeSort by relevance Sort by last modified time
    Searched full:unit (Results 176 - 200 of 7958) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/llvm/bindings/ocaml/analysis/
llvm_analysis.ml 15 external assert_valid_module : Llvm.llmodule -> unit
18 external assert_valid_function : Llvm.llvalue -> unit
20 external view_function_cfg : Llvm.llvalue -> unit = "llvm_view_function_cfg"
21 external view_function_cfg_only : Llvm.llvalue -> unit
  /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/ppp/pppd/
cbcp.h 5 int us_unit; /* Interface unit number */
ecp.c 82 static void ecp_init __P((int unit));
84 static void ecp_open __P((int unit));
85 static void ecp_close __P((int unit, char *));
86 static void ecp_lowerup __P((int unit));
88 static void ecp_input __P((int unit, u_char *pkt, int len));
89 static void ecp_protrej __P((int unit));
95 static void ecp_datainput __P((int unit, u_char *pkt, int len));
146 ecp_init(unit)
147 int unit;
149 fsm *f = &ecp_fsm[unit];
    [all...]
  /external/scrypt/tests/
Android.mk 1 # Build the scrypt unit tests
  /external/stlport/test/unit/
iota.h 6 //iota definition used in unit test
  /external/wpa_supplicant_8/wpa_supplicant/systemd/
wpa_supplicant.service.in 0 [Unit]
  /libcore/luni/src/test/resources/
recipt.dtd 8 unit CDATA #IMPLIED>
  /libcore/luni/src/test/resources/systemid/
recipt.dtd 8 unit CDATA #IMPLIED>
  /ndk/tests/build/ndk-build-unit-tests/
build.sh 1 # This is used to check that the internal unit tests of ndk-build
  /ndk/tests/device/test-gnustl-full/unit/
iota.h 6 //iota definition used in unit test
  /ndk/tests/device/test-stlport/unit/
iota.h 6 //iota definition used in unit test
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_email.py 2 # email package unit tests
test_email_codecs.py 2 # email package unit tests for (optional) Asian codecs
test_email_renamed.py 2 # email package unit tests
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_email.py 2 # email package unit tests
test_email_codecs.py 2 # email package unit tests for (optional) Asian codecs
test_email_renamed.py 2 # email package unit tests
  /external/chromium_org/media/filters/
ffmpeg_h264_to_annex_b_bitstream_converter.h 28 // on single NAL unit basis which is contained within the |packet| with the
32 // NAL unit #1 ==> bytestream buffer #1 (AVC configuraion + NAL unit #1)
33 // NAL unit #2 ==> bytestream buffer #2 (NAL unit #2)
35 // NAL unit #n ==> bytestream buffer #n (NAL unit #n)
  /external/icu/icu4c/source/common/unicode/
ustringtrie.h 35 * The input unit(s) did not continue a matching string.
43 * The input unit(s) continued a matching string
50 * The input unit(s) continued a matching string
53 * No further input byte/unit can continue a matching string.
58 * The input unit(s) continued a matching string
61 * Another input byte/unit can continue a matching string.
90 * @return true if another input byte/unit can continue a matching string.
  /external/llvm/bindings/ocaml/transforms/passmgr_builder/
passmgr_builder_ocaml.c 48 /* t -> unit */
49 CAMLprim value llvm_pmbuilder_create(value Unit) {
53 /* int -> t -> unit */
59 /* int -> t -> unit */
65 /* int -> t -> unit */
72 /* bool -> t -> unit */
80 /* bool -> t -> unit */
88 /* [ `Function ] Llvm.PassManager.t -> t -> unit */
96 /* [ `Module ] Llvm.PassManager.t -> t -> unit */
105 internalize:bool -> run_inliner:bool -> t -> unit */
    [all...]
  /external/llvm/lib/Target/PowerPC/
PPCScheduleG4.td 14 def G4_BPU : FuncUnit; // Branch unit
15 def G4_SLU : FuncUnit; // Store/load unit
16 def G4_SRU : FuncUnit; // special register unit
17 def G4_IU1 : FuncUnit; // integer unit 1 (simple)
18 def G4_IU2 : FuncUnit; // integer unit 2 (complex)
19 def G4_FPU1 : FuncUnit; // floating point unit 1
20 def G4_VPU : FuncUnit; // vector permutation unit
21 def G4_VIU1 : FuncUnit; // vector integer unit 1 (simple)
22 def G4_VIU2 : FuncUnit; // vector integer unit 2 (complex)
23 def G4_VFPU : FuncUnit; // vector floating point unit
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
texstate.h 40 * Return pointer to current texture unit.
41 * This the texture unit set by glActiveTexture(), not glClientActiveTexture().
46 ASSERT(ctx->Texture.CurrentUnit < Elements(ctx->Texture.Unit));
47 return &(ctx->Texture.Unit[ctx->Texture.CurrentUnit]);
55 _mesa_print_texunit_state( struct gl_context *ctx, GLuint unit );
  /external/icu/icu4c/source/i18n/unicode/
tmunit.h 14 * \brief C++ API: time unit object
25 * Measurement unit for time units.
49 * @param timeUnitField time unit field based on which the instance
99 * Get time unit field.
100 * @return time unit field.

Completed in 440 milliseconds

1 2 3 4 5 6 78 91011>>