Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for callFunction (0.25 sec)

  1. src/runtime/asm_s390x.s

    	MVC	$256, 0(R4), 0(R6);		\
    	MOVD	$256(R4), R4;			\
    	MOVD	$256(R6), R6;			\
    	BR	loopArgs;			\
    tailArgs: /* copy remaining bytes */		\
    	CMP	R5, $0;				\
    	BEQ	callFunction;			\
    	SUB	$1, R5;				\
    	EXRL	$callfnMVC<>(SB), R5;		\
    callFunction:					\
    	MOVD	f+8(FP), R12;			\
    	MOVD	(R12), R8;			\
    	PCDATA  $PCDATA_StackMapIndex, $0;	\
    	BL	(R8);				\
    	/* copy return values back */		\
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 09:18:28 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  2. tensorflow/cc/experimental/libtf/tests/perf_test.cc

      return TaggedValue(args.tuple()[0].i64() + args.tuple()[1].i64());
    }
    
    int64_t AddRaw(int64_t a, int64_t b) { return a + b; }
    
    }  // namespace
    
    // Add numbers in a loop by calling a callable.
    void CallFunctions(::testing::benchmark::State& state) {
      Integer sum(0);
      Callable callable((impl::TaggedValue(impl::Func(AddTagged))));
      *callable.Call<Integer>(sum, Integer(30));
      size_t i = 0;
      for (auto dummy : state) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 15 16:58:38 UTC 2021
    - 3K bytes
    - Viewed (0)
  3. src/runtime/sys_aix_ppc64.s

    //
    
    #include "go_asm.h"
    #include "go_tls.h"
    #include "textflag.h"
    #include "asm_ppc64x.h"
    
    // This function calls a C function with the function descriptor in R12
    TEXT callCfunction<>(SB),	NOSPLIT|NOFRAME,$0
    	MOVD	0(R12), R12
    	MOVD	R2, 40(R1)
    	MOVD	0(R12), R0
    	MOVD	8(R12), R2
    	MOVD	R0, CTR
    	BR	(CTR)
    
    
    // asmsyscall6 calls a library function with a function descriptor
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 21 19:29:00 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/Tables.java

        @Override
        Iterator<Cell<R, C, V2>> cellIterator() {
          return Iterators.transform(fromTable.cellSet().iterator(), cellFunction());
        }
    
        @Override
        Spliterator<Cell<R, C, V2>> cellSpliterator() {
          return CollectSpliterators.map(fromTable.cellSet().spliterator(), cellFunction());
        }
    
        @Override
        public Set<R> rowKeySet() {
          return fromTable.rowKeySet();
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Mar 04 22:45:41 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/Tables.java

        @Override
        public Map<R, V2> column(@ParametricNullness C columnKey) {
          return Maps.transformValues(fromTable.column(columnKey), function);
        }
    
        Function<Cell<R, C, V1>, Cell<R, C, V2>> cellFunction() {
          return new Function<Cell<R, C, V1>, Cell<R, C, V2>>() {
            @Override
            public Cell<R, C, V2> apply(Cell<R, C, V1> cell) {
              return immutableCell(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  6. src/internal/trace/traceviewer/static/trace_viewer_full.html

    ,'V8.RecompileSynchronous','V8.ScriptCompiler','v8.compile','v8.parseOnBackground',],script_execute:['EvaluateScript','FunctionCall','HTMLParserScriptRunner ExecuteScript','V8.Execute','V8.RunMicrotasks','V8.Task','WindowProxy::initialize','v8.callFunction','v8.run',],resource_loading:['RenderFrameImpl::didFinishDocumentLoad','RenderFrameImpl::didFinishLoad','Resource::appendData','ResourceDispatcher::OnReceivedData','ResourceDispatcher::OnReceivedResponse','ResourceDispatcher::OnRequestComplete...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top