HomeSort by relevance Sort by last modified time
    Searched refs:dep2 (Results 1 - 24 of 24) sorted by null

  /prebuilts/go/darwin-x86/misc/cgo/testshared/src/exe2/
exe2.go 3 import "dep2"
6 d := &dep2.Dep2{}
7 dep2.W = dep2.G() + 1 + d.Method()
  /prebuilts/go/linux-x86/misc/cgo/testshared/src/exe2/
exe2.go 3 import "dep2"
6 d := &dep2.Dep2{}
7 dep2.W = dep2.G() + 1 + d.Method()
  /prebuilts/go/darwin-x86/misc/cgo/testshared/src/dep3/
dep3.go 4 // depBase that is also referenced in dep2, but dep2 is loaded by the
10 "dep2"
16 dep2 dep2.Dep2
21 return x.dep.X + x.dep2.X
  /prebuilts/go/linux-x86/misc/cgo/testshared/src/dep3/
dep3.go 4 // depBase that is also referenced in dep2, but dep2 is loaded by the
10 "dep2"
16 dep2 dep2.Dep2
21 return x.dep.X + x.dep2.X
  /prebuilts/go/darwin-x86/misc/cgo/testshared/src/dep2/
dep2.go 1 package dep2 package
9 type Dep2 struct {
  /prebuilts/go/linux-x86/misc/cgo/testshared/src/dep2/
dep2.go 1 package dep2 package
9 type Dep2 struct {
  /tools/tradefederation/core/tests/src/com/android/tradefed/command/
CommandFileWatcherTest.java 121 final File dep2 = new ModFile("/ceci/n'est/pas/une/line", 1, 1, 1); local
122 mWatcher.addCmdFile(cmdFile1, EMPTY_ARGS, Arrays.asList(dep1, dep2));
123 mWatcher.addCmdFile(cmdFile2, EMPTY_ARGS, Arrays.asList(dep2));
134 final File dep2 = new ModFile("/ceci/n'est/pas/une/line", 1, 1, 1, 1); local
140 mWatcher.addCmdFile(cmdFile1, EMPTY_ARGS, Arrays.asList(dep2));
141 // don't expect a second notify here, because dependent file has changed from dep1 to dep2
  /external/toybox/kconfig/
expr.h 48 #define E_OR(dep1, dep2) (((dep1)>(dep2))?(dep1):(dep2))
49 #define E_AND(dep1, dep2) (((dep1)<(dep2))?(dep1):(dep2))
81 struct expr *dep, *dep2; member in struct:symbol
menu.c 233 struct expr *parentdep, *basedep, *dep, *dep2, **ep; local
294 dep2 = expr_copy(basedep);
295 expr_eliminate_eq(&dep, &dep2);
297 if (!expr_is_yes(dep2)) {
298 expr_free(dep2);
301 expr_free(dep2);
  /external/chromium-trace/catapult/dependency_manager/dependency_manager/
dependency_manager_unittest.py 89 dep2 = 'dependency2'
99 dep_info3.dependency = dep2
105 dep2: {plat2: dep_info3}}
116 dep2 = 'dependency2'
163 dep_info1.dependency = dep2
166 dep_info2.dependency = dep2
173 dep2: {plat1: dep_info1,
189 dep_info1.dependency = dep2
192 dep_info2.dependency = dep2
202 dep2: {plat1: dep_info1
    [all...]
  /external/valgrind/VEX/priv/
guest_s390_defs.h 245 UInt s390_calculate_cond(ULong mask, ULong op, ULong dep1, ULong dep2,
guest_s390_toIR.c 539 s390_cc_thunk_fill(IRExpr *op, IRExpr *dep1, IRExpr *dep2, IRExpr *ndep)
550 stmt(IRStmt_Put(dep2_off, dep2));
585 IRExpr *op, *dep1, *dep2, *ndep; local
589 dep2 = mkU64(0);
592 s390_cc_thunk_fill(op, dep1, dep2, ndep);
599 IRExpr *op, *dep1, *dep2, *ndep; local
603 dep2 = s390_cc_widen(d2, sign_extend);
606 s390_cc_thunk_fill(op, dep1, dep2, ndep);
613 of the ndep field does matter and therefore we make the DEP2 field
616 DEP2 = original_DEP2 ^ NDE
624 IRExpr *op, *dep1, *dep2, *ndep, *dep2x; local
641 IRExpr *op, *dep1, *dep2, *ndep; local
665 IRExpr *op, *dep1, *dep2, *ndep; local
764 IRExpr **args, *call, *op, *dep1, *dep2, *ndep; local
787 IRExpr **args, *call, *op, *dep1, *dep2, *mask; local
823 IRExpr **args, *call, *op, *dep1, *dep2, *ndep, *mask; local
    [all...]
guest_s390_helpers.c 224 and DEP2 have to be tracked. See detailed comment in
974 /* Recover the original DEP2 value. See comment near s390_cc_thunk_put3 \
989 /* Recover the original DEP2 value. See comment near s390_cc_thunk_put3 \
    [all...]
guest_arm64_toIR.c 1955 IRTemp dep2 = newTemp(Ity_I64); local
    [all...]
guest_x86_toIR.c 799 interested in DEP1 and DEP2. */
823 checking. We're only interested in DEP1 and DEP2. */
845 interested in DEP1 and DEP2. */
910 /* Set the flags thunk OP, DEP1 and DEP2 fields. The supplied op is
914 void setFlags_DEP1_DEP2 ( IROp op8, IRTemp dep1, IRTemp dep2, IRType ty )
928 stmt( IRStmt_Put( OFFB_CC_DEP2, widenUto32(mkexpr(dep2))) );
935 /* Set the OP and DEP1 fields only, and write zero to DEP2. */
989 /* DEP1 contains the result, DEP2 contains the undershifted value. */
    [all...]
guest_amd64_toIR.c     [all...]
  /prebuilts/go/darwin-x86/misc/cgo/testshared/
shared_test.go 573 // runtime, another package (dep2) that links against the first, and and an
574 // executable that links against dep2.
577 goCmd(t, "install", "-buildmode=shared", "-linkshared", "dep2")
584 goCmd(t, "install", "-buildmode=shared", "-linkshared", "dep2")
652 goCmd(t, "install", "-compiler=gccgo", "-buildmode=shared", "-linkshared", "dep2")
  /prebuilts/go/linux-x86/misc/cgo/testshared/
shared_test.go 573 // runtime, another package (dep2) that links against the first, and and an
574 // executable that links against dep2.
577 goCmd(t, "install", "-buildmode=shared", "-linkshared", "dep2")
584 goCmd(t, "install", "-buildmode=shared", "-linkshared", "dep2")
652 goCmd(t, "install", "-compiler=gccgo", "-buildmode=shared", "-linkshared", "dep2")
  /bionic/tests/math_data/
ldexpf_intel_data.h 1624 0x1.1745dep2,
    [all...]
scalbnf_intel_data.h 1624 0x1.1745dep2,
    [all...]
scalbf_intel_data.h 1634 0x1.1745dep2,
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/go/
pkg.go     [all...]
  /prebuilts/go/linux-x86/src/cmd/go/
pkg.go     [all...]
  /toolchain/binutils/binutils-2.25/opcodes/
ia64-asmtab.c 424 static const unsigned short dep2[] = { variable
    [all...]

Completed in 591 milliseconds