HomeSort by relevance Sort by last modified time
    Searched defs:def (Results 26 - 50 of 813) sorted by null

12 3 4 5 6 7 8 91011>>

  /hardware/qcom/media/msm8974/mm-video-v4l2/vidc/
venc.mk 12 libmm-venc-def := -g -O3 -Dlrintf=_ffix_r
13 libmm-venc-def += -D__align=__alignx
14 libmm-venc-def += -D__alignx\(x\)=__attribute__\(\(__aligned__\(x\)\)\)
15 libmm-venc-def += -DT_ARM
16 libmm-venc-def += -Dinline=__inline
17 libmm-venc-def += -D_ANDROID_
18 libmm-venc-def += -UENABLE_DEBUG_LOW
19 libmm-venc-def += -DENABLE_DEBUG_HIGH
20 libmm-venc-def += -DENABLE_DEBUG_ERROR
21 libmm-venc-def += -UINPUT_BUFFER_LO
    [all...]
  /hardware/qcom/media/msm8996/videopp/
Android.mk 12 libOmxVdpp-def := -D__alignx\(x\)=__attribute__\(\(__aligned__\(x\)\)\)
13 libOmxVdpp-def += -D__align=__alignx
14 libOmxVdpp-def += -Dinline=__inline
15 libOmxVdpp-def += -g -O3
16 libOmxVdpp-def += -DIMAGE_APPS_PROC
17 libOmxVdpp-def += -D_ANDROID_
18 libOmxVdpp-def += -DCDECL
19 libOmxVdpp-def += -DT_ARM
20 libOmxVdpp-def += -DNO_ARM_CLZ
21 libOmxVdpp-def += -UENABLE_DEBUG_LO
    [all...]
  /system/core/toolbox/upstream-netbsd/bin/dd/
conv.c 56 * def --
62 def(void) function
  /toolchain/binutils/binutils-2.27/zlib/examples/
zpipe.c 31 def() returns Z_OK on success, Z_MEM_ERROR if memory could not be
36 int def(FILE *source, FILE *dest, int level) function
186 ret = def(stdin, stdout, Z_DEFAULT_COMPRESSION);
fitblk.c 70 /* compress from file to def until provided buffer is full or end of
73 local int partcompress(FILE *in, z_streamp def)
80 def->avail_in = fread(raw, 1, RAWLEN, in);
83 def->next_in = raw;
86 ret = deflate(def, flush);
88 } while (def->avail_out != 0 && flush == Z_NO_FLUSH);
92 /* recompress from inf's input to def's output; the input for inf and
93 the output for def are set in those structures before calling;
96 local int recompress(z_streamp inf, z_streamp def)
113 def->avail_in = RAWLEN - inf->avail_out
134 z_stream def, inf; \/* zlib deflate and inflate states *\/ local
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/testtype/testdefs/
XmlDefsParser.java 49 InstrumentationTestDef def = new InstrumentationTestDef(defName, local
51 def.setClassName(attributes.getValue("class"));
52 def.setRunner(attributes.getValue("runner"));
53 def.setContinuous("true".equals(attributes.getValue("continuous")));
54 def.setCoverageTarget(attributes.getValue("coverage_target"));
55 mTestDefsMap.put(defName, def);
XmlDefsTest.java 141 * Adds a remote test def file path.
150 * Adds a local test def file path.
220 for (InstrumentationTestDef def : parser.getTestDefs()) {
222 if (def.isContinuous()) {
226 test.setPackageName(def.getPackage());
227 if (def.getRunner() != null) {
228 test.setRunnerName(def.getRunner());
230 if (def.getClassName() != null) {
231 test.setClassName(def.getClassName());
244 test.setCoverageTarget(def.getCoverageTarget())
    [all...]
  /libcore/ojluni/src/main/java/java/util/zip/
GZIPOutputStream.java 156 if (!def.finished()) {
157 def.finish();
158 while (!def.finished()) {
159 int len = def.deflate(buf, 0, buf.length);
160 if (def.finished() && len <= buf.length - TRAILER_SIZE) {
202 writeInt(def.getTotalIn(), buf, offset + 4); // Number of uncompr. bytes
  /external/libvpx/libvpx/
args.h 24 const struct arg_def *def; member in struct:arg
49 int arg_match(struct arg *arg_, const struct arg_def *def, char **argv);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutex_destroy/
5-2.c 169 char *def = "Default"; local
174 stri = def;
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_vec4_live_variables.h 40 BITSET_WORD *def; member in struct:brw::block_data
  /external/one-true-awk/
maketab.c 119 char buf[200], name[200], def[200]; local
134 n = sscanf(buf, "%1c %s %s %d", &c, def, name, &tok);
135 if (c != '#' || (n != 4 && strcmp(def,"define") != 0)) /* not a valid #define */
  /external/python/cpython3/Python/
importdl.c 99 PyModuleDef *def; local
203 def = PyModule_GetDef(m);
204 if (def == NULL) {
210 def->m_base.m_init = p0;
  /external/skqp/tools/bookmaker/
fiddleParser.cpp 10 static Definition* find_fiddle(Definition* def, const string& name) {
11 if (MarkType::kExample == def->fMarkType && name == def->fFiddle) {
12 return def;
14 for (auto& child : def->fChildren) {
28 Definition* def = find_fiddle(topic.second, name); local
29 if (def) {
30 return def;
  /external/tensorflow/tensorflow/core/framework/
common_shape_fns_test.cc 59 NodeDef def; local
63 .Finalize(&def));
65 InferenceContext c(TF_GRAPH_DEF_VERSION, &def, op_def, {S({}), S({10})}, {},
79 NodeDef def; local
81 NodeDefBuilder("test", "L2Loss").Input("t", 0, DT_FLOAT).Finalize(&def));
84 InferenceContext c(TF_GRAPH_DEF_VERSION, &def, op_def, {S({})}, {}, {}, {});
91 InferenceContext c(TF_GRAPH_DEF_VERSION, &def, op_def,
110 NodeDef def; local
116 .Finalize(&def));
119 InferenceContext c(TF_GRAPH_DEF_VERSION, &def, op_def
227 NodeDef def; local
331 NodeDef def; local
998 NodeDef def; local
1011 NodeDef def; local
1024 NodeDef def; local
1038 NodeDef def; local
1052 NodeDef def; local
1066 NodeDef def; local
1079 NodeDef def; local
1092 NodeDef def; local
1105 NodeDef def; local
1118 NodeDef def; local
    [all...]
  /external/zlib/src/examples/
fitblk.c 70 /* compress from file to def until provided buffer is full or end of
73 local int partcompress(FILE *in, z_streamp def)
80 def->avail_in = fread(raw, 1, RAWLEN, in);
83 def->next_in = raw;
86 ret = deflate(def, flush);
88 } while (def->avail_out != 0 && flush == Z_NO_FLUSH);
92 /* recompress from inf's input to def's output; the input for inf and
93 the output for def are set in those structures before calling;
96 local int recompress(z_streamp inf, z_streamp def)
113 def->avail_in = RAWLEN - inf->avail_out
134 z_stream def, inf; \/* zlib deflate and inflate states *\/ local
    [all...]
  /hardware/qcom/media/msm8996/mm-video-v4l2/vidc/common/
Android.mk 10 libmm-vidc-def := -g -O3 -Dlrintf=_ffix_r
11 libmm-vidc-def += -D__align=__alignx
12 libmm-vidc-def += -D__alignx\(x\)=__attribute__\(\(__aligned__\(x\)\)\)
13 libmm-vidc-def += -DT_ARM
14 libmm-vidc-def += -Dinline=__inline
15 libmm-vidc-def += -D_ANDROID_
16 libmm-vidc-def += -Werror
17 libmm-vidc-def += -D_ANDROID_ICS_
34 LOCAL_CFLAGS := $(libmm-vidc-def)
  /hardware/qcom/media/msm8998/mm-video-v4l2/vidc/common/
Android.mk 10 libmm-vidc-def := -g -O3 -Dlrintf=_ffix_r
11 libmm-vidc-def += -D__align=__alignx
12 libmm-vidc-def += -D__alignx\(x\)=__attribute__\(\(__aligned__\(x\)\)\)
13 libmm-vidc-def += -DT_ARM
14 libmm-vidc-def += -Dinline=__inline
15 libmm-vidc-def += -D_ANDROID_
16 libmm-vidc-def += -Werror
17 libmm-vidc-def += -D_ANDROID_ICS_
34 LOCAL_CFLAGS := $(libmm-vidc-def)
  /libcore/ojluni/src/main/java/sun/net/
NetProperties.java 90 String def = props.getProperty(key); local
92 return System.getProperty(key, def);
  /packages/apps/Settings/src/com/android/settings/applications/defaultapps/
DefaultPhonePreferenceController.java 82 String def = DefaultDialerManager.getDefaultDialerApplication(context, local
84 return def != null && def.equals(pkg);
  /system/extras/tests/kernel.config/
aslr_test.h 47 static unsigned int def, min, max; member in class:AslrMmapTest
  /tools/tradefederation/core/src/com/android/tradefed/config/
SandboxConfigurationFactory.java 51 ConfigurationDef def = new ConfigurationDef(name); local
52 new ConfigLoader(isGlobal).loadConfiguration(name, def, null, templateMap);
53 return def;
  /external/protobuf/ruby/src/main/java/com/google/protobuf/jruby/
RubyDescriptor.java 181 RubyOneofDescriptor def = (RubyOneofDescriptor) obj; local
182 builder.addOneofDecl(def.build(builder.getOneofDeclCount()));
183 for (RubyFieldDescriptor fieldDescriptor : def.getFields()) {
186 oneofDefs.put(def.getName(context), def); local
  /libcore/luni/src/test/java/libcore/java/util/zip/
DeflaterOutputStreamTest.java 122 Deflater def = new FlushingDeflater(); local
125 DeflaterOutputStream dos = new DeflaterOutputStream(baos, def, deflaterBufferSize);
171 assertFalse(def.finished());
174 def.end();
  /cts/hostsidetests/jvmti/base/jni/
redefine.cpp 36 jvmtiClassDefinition def; local
37 def.klass = target;
38 def.class_byte_count = static_cast<jint>(env->GetArrayLength(dex_bytes));
40 jvmtiError res =jvmti_env->Allocate(def.class_byte_count,
41 const_cast<unsigned char**>(&def.class_bytes));
45 memcpy(const_cast<unsigned char*>(def.class_bytes), redef_bytes, def.class_byte_count);
48 res = jvmti_env->RedefineClasses(1, &def);

Completed in 549 milliseconds

12 3 4 5 6 7 8 91011>>