HomeSort by relevance Sort by last modified time
    Searched refs:Int (Results 276 - 300 of 1491) sorted by null

<<11121314151617181920>>

  /developers/samples/android/ui/views/NavigationDrawer/kotlinApp/Application/src/main/java/com/example/android/navigationdrawer/
MainActivity.kt 52 override fun onItemClick(container: AdapterView<*>, view: View, position: Int, id: Long) {
60 override fun getItem(position: Int) = samples[position]
62 override fun getItemId(position: Int) = samples[position].hashCode().toLong()
64 override fun getView(position: Int, convertView: View?, container: ViewGroup): View {
  /developers/samples/android/ui/views/RecyclerView/kotlinApp/app/src/main/java/com/example/android/common/logger/
MessageOnlyLogFilter.kt 30 override fun println(priority: Int, tag: String?, msg: String?, tr: Throwable?) {
  /developers/samples/android/ui/window/MultiWindowPlayground/kotlinApp/Application/src/main/java/com/android/multiwindowplayground/logger/
LogWrapper.kt 39 override fun println(priority: Int, tag: String?, msg: String, tr: Throwable?) {
  /external/valgrind/coregrind/m_demangle/
demangle.c 203 /*OUT*/Int* eclassTag,
204 /*OUT*/Int* eclassPrio )
239 Int soi, fni, i;
275 *eclassTag = 1000 * ((Int)sym[4] - '0')
276 + 100 * ((Int)sym[5] - '0')
277 + 10 * ((Int)sym[6] - '0')
278 + 1 * ((Int)sym[7] - '0');
283 *eclassPrio = ((Int)sym[8]) - '0';
  /external/valgrind/coregrind/
pub_core_libcassert.h 70 extern void VG_(client_exit)( Int status );
74 extern void VG_(exit_now)( Int status );
pub_core_trampoline.h 64 extern Char* VG_(x86_linux_REDIR_FOR_index) ( const Char*, Int );
74 extern Char* VG_(amd64_linux_REDIR_FOR_index) ( const Char*, Int );
82 extern void* VG_(ppc32_linux_REDIR_FOR_strchr)( void*, Int );
88 extern void* VG_(ppc64_linux_REDIR_FOR_strchr)( void*, Int );
103 //extern void* VG_(arm_linux_REDIR_FOR_index) ( void*, Int );
104 extern void* VG_(arm_linux_REDIR_FOR_memcpy)( void*, void*, Int );
135 extern char* VG_(amd64_darwin_REDIR_FOR_strchr)( const char*, int );
152 extern Char* VG_(mips32_linux_REDIR_FOR_index)( const Char*, Int );
158 extern Char* VG_(mips64_linux_REDIR_FOR_index)( const Char*, Int );
171 extern Int VG_(amd64_solaris_REDIR_FOR_strcmp)(const HChar *, const HChar *)
    [all...]
m_options.c 53 Int VG_(clo_error_exitcode) = 0;
64 Int VG_(clo_vgdb_poll) = 5000;
65 Int VG_(clo_vgdb_error) = 999999999;
71 Int VG_(clo_gen_suppressions) = 0;
72 Int VG_(clo_sanity_level) = 1;
73 Int VG_(clo_verbosity) = 1;
86 Int VG_(clo_input_fd) = 0; /* stdin */
97 Int VG_(clo_trace_notbelow) = -1; // unspecified
98 Int VG_(clo_trace_notabove) = -1; // unspecified
112 Int VG_(clo_core_redzone_size) = CORE_REDZONE_DEFAULT_SZB
    [all...]
  /frameworks/support/core/ktx/src/main/java/androidx/core/graphics/
PorterDuff.kt 35 inline fun PorterDuff.Mode.toColorFilter(color: Int) = PorterDuffColorFilter(color, this)
  /frameworks/support/core/ktx/src/main/java/androidx/core/graphics/drawable/
ColorDrawable.kt 27 inline fun @receiver:ColorInt Int.toDrawable() = ColorDrawable(this)
  /frameworks/support/navigation/common/ktx/src/main/java/androidx/navigation/
NavDestinationBuilder.kt 31 @IdRes val id: Int
66 private var actions = mutableMapOf<Int, NavAction>()
71 fun action(actionId: Int, block: NavActionBuilder.() -> Unit) {
101 var destinationId: Int = 0
  /frameworks/support/room/compiler/src/main/kotlin/androidx/room/vo/
UpdateMethod.kt 25 @OnConflictStrategy val onConflictStrategy: Int) : ShortcutMethod(
  /frameworks/support/room/compiler/src/main/kotlin/androidx/room/writer/
EntityDeleteComparator.kt 27 override fun compare(lhs: Entity, rhs: Entity): Int {
  /frameworks/support/room/integration-tests/kotlintestapp/src/androidTest/java/androidx/room/integration/kotlintestapp/vo/
PublisherWithBookSales.kt 29 var sales: List<Int>? = emptyList()
  /frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
AsyncListDifferTest.kt 244 override fun onInserted(position: Int, count: Int) {
248 override fun onRemoved(position: Int, count: Int) {
252 override fun onMoved(fromPosition: Int, toPosition: Int) {
256 override fun onChanged(position: Int, count: Int, payload: Any?) {
313 override fun onInserted(position: Int, count: Int) {}
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/testdata/gen/
cmpConstGen.go 40 func cmp(left *big.Int, op string, right *big.Int) bool {
52 func inRange(typ string, val *big.Int) bool {
53 min, max := &big.Int{}, &big.Int{}
81 func getValues(typ string) []*big.Int {
82 Uint := func(v uint64) *big.Int { return big.NewInt(0).SetUint64(v) }
83 Int := func(v int64) *big.Int { return big.NewInt(0).SetInt64(v) }
84 values := []*big.Int{
    [all...]
  /prebuilts/go/darwin-x86/src/crypto/ecdsa/
ecdsa.go 34 Inverse(k *big.Int) *big.Int
39 CombinedMult(bigX, bigY *big.Int, baseScalar, scalar []byte) (x, y *big.Int)
49 X, Y *big.Int
55 D *big.Int
59 R, S *big.Int
83 var one = new(big.Int).SetInt64(1)
87 func randFieldElement(c elliptic.Curve, rand io.Reader) (k *big.Int, err error) {
95 k = new(big.Int).SetBytes(b
    [all...]
  /prebuilts/go/darwin-x86/src/math/big/
doc.go 9 Int signed integers
13 The zero value for an Int, Rat, or Float correspond to 0. Thus, new
17 var x Int // &x is an *Int of value 0
26 For instance, NewInt(x) returns an *Int set to the value of the int64
32 var z1 Int
45 with T one of Int, Rat, or Float. For unary and binary operations, the
53 For instance, given three *Int values a, b and c, the invocation
75 For instance, the arguments for (*Int).Add are named x and y, and because
78 func (z *Int) Add(x, y *Int) *In
    [all...]
intmarsh_test.go 33 var tx Int
39 var rx Int
51 // Sending a nil Int pointer (inside a slice) on a round trip through gob should yield a zero.
58 var in = make([]*Int, 1)
63 var out []*Int
71 var zero Int
73 t.Fatalf("transmission of (*Int)(nil) failed: got %s want 0", out)
81 var tx Int
88 var rx Int
104 var tx Int
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/testdata/gen/
cmpConstGen.go 40 func cmp(left *big.Int, op string, right *big.Int) bool {
52 func inRange(typ string, val *big.Int) bool {
53 min, max := &big.Int{}, &big.Int{}
81 func getValues(typ string) []*big.Int {
82 Uint := func(v uint64) *big.Int { return big.NewInt(0).SetUint64(v) }
83 Int := func(v int64) *big.Int { return big.NewInt(0).SetInt64(v) }
84 values := []*big.Int{
    [all...]
  /prebuilts/go/linux-x86/src/crypto/ecdsa/
ecdsa.go 34 Inverse(k *big.Int) *big.Int
39 CombinedMult(bigX, bigY *big.Int, baseScalar, scalar []byte) (x, y *big.Int)
49 X, Y *big.Int
55 D *big.Int
59 R, S *big.Int
83 var one = new(big.Int).SetInt64(1)
87 func randFieldElement(c elliptic.Curve, rand io.Reader) (k *big.Int, err error) {
95 k = new(big.Int).SetBytes(b
    [all...]
  /prebuilts/go/linux-x86/src/math/big/
doc.go 9 Int signed integers
13 The zero value for an Int, Rat, or Float correspond to 0. Thus, new
17 var x Int // &x is an *Int of value 0
26 For instance, NewInt(x) returns an *Int set to the value of the int64
32 var z1 Int
45 with T one of Int, Rat, or Float. For unary and binary operations, the
53 For instance, given three *Int values a, b and c, the invocation
75 For instance, the arguments for (*Int).Add are named x and y, and because
78 func (z *Int) Add(x, y *Int) *In
    [all...]
intmarsh_test.go 33 var tx Int
39 var rx Int
51 // Sending a nil Int pointer (inside a slice) on a round trip through gob should yield a zero.
58 var in = make([]*Int, 1)
63 var out []*Int
71 var zero Int
73 t.Fatalf("transmission of (*Int)(nil) failed: got %s want 0", out)
81 var tx Int
88 var rx Int
104 var tx Int
    [all...]
  /external/valgrind/coregrind/m_aspacemgr/
aspacemgr-common.c 55 void ML_(am_exit)( Int status )
78 Int line,
89 Int ML_(am_getpid)( void )
110 Int ret;
144 UInt flags, Int fd, Off64T offset)
254 SysRes ML_(am_open) ( const HChar* pathname, Int flags, Int mode )
271 Int ML_(am_read) ( Int fd, void* buf, Int count
    [all...]
  /external/swiftshader/src/Renderer/
Blitter.cpp 34 void Blitter::clear(void *pixel, sw::Format format, Surface *dest, const SliceRect &dRect, unsigned int rgbaMask)
47 bool Blitter::fastClear(void *pixel, sw::Format format, Surface *dest, const SliceRect &dRect, unsigned int rgbaMask)
105 for(int j = 0; j < dest->getSamples(); j++)
112 for(int i = dRect.y0; i < dRect.y1; i++)
119 for(int i = dRect.y0; i < dRect.y1; i++)
166 source->lockInternal((int)sRect.x0, (int)sRect.y0, sRect.slice, sw::LOCK_READONLY, sw::PUBLIC);
175 for(int j = dRect.y0; j < dRect.y1; j++)
179 for(int i = dRect.x0; i < dRect.x1; i++)
204 for(int k = 0; k < dest->getDepth(); k++
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Analysis/
IntervalPartition.cpp 58 void IntervalPartition::updatePredecessors(Interval *Int) {
59 BasicBlock *Header = Int->getHeaderNode();
60 for (Interval::succ_iterator I = Int->Successors.begin(),
61 E = Int->Successors.end(); I != E; ++I)

Completed in 1537 milliseconds

<<11121314151617181920>>