HomeSort by relevance Sort by last modified time
    Searched refs:Access (Results 76 - 100 of 132) sorted by null

1 2 34 5 6

  /external/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp 138 "enable-mem-access-versioning", cl::init(true), cl::Hidden,
139 cl::desc("Enable symblic stride memory access versioning"));
184 cl::desc("Enable the use of the block frequency analysis to access PGO "
769 /// \brief Collect memory access with loop invariant strides.
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/fusefs/
fuse_fs.cc 57 Error FuseFs::Access(const Path& path, int a_mode) {
58 if (!fuse_ops_->access)
61 int result = fuse_ops_->access(path.Join().c_str(), a_mode);
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/httpfs/
http_fs.cc 44 Error HttpFs::Access(const Path& path, int a_mode) {
61 // Don't allow write or execute access.
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/jsfs/
js_fs.cc 399 Error JsFs::Access(const Path& path, int a_mode) {
402 "cmd", "access",
  /external/chromium_org/sandbox/linux/seccomp-bpf/
sandbox_bpf_unittest.cc 755 case __NR_faccessat: // access is a wrapper of faccessat in android
756 return broker_process->Access(reinterpret_cast<const char*>(args.args[1]),
760 return broker_process->Access(reinterpret_cast<const char*>(args.args[0]),
814 BPF_ASSERT(broker_process->Access("/proc/denied", R_OK) == -EPERM);
816 BPF_ASSERT(broker_process->Access("/proc/allowed", R_OK) == -ENOENT);
833 // And test glibc's access().
834 BPF_ASSERT(access("/proc/denied", R_OK) == -1);
837 BPF_ASSERT(access("/proc/allowed", R_OK) == -1);
841 int cpu_info_access = access("/proc/cpuinfo", R_OK);
    [all...]
  /external/chromium_org/tools/clang/plugins/
FindBadConstructsConsumer.cpp 510 if (path.Access != AS_public)
  /external/chromium_org/v8/test/mjsunit/harmony/
generators-iteration.js 201 // Access to captured free variables.
362 // Access to this with formal arguments.
  /external/clang/lib/CodeGen/
CGDebugInfo.cpp     [all...]
  /external/compiler-rt/lib/tsan/tests/rtl/
tsan_test_util_linux.cc 382 void ScopedThread::Access(void *addr, bool is_write,
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
clusapi.h 349 #define CLCTL_EXTERNAL_CODE(Function,Access,Modify) (((Access) << CLUSCTL_ACCESS_SHIFT) | ((CLCTL_CLUSTER_BASE + Function) << CLUSCTL_FUNCTION_SHIFT) | ((Modify) << CLCTL_MODIFY_SHIFT))
350 #define CLCTL_INTERNAL_CODE(Function,Access,Modify) (((Access) << CLUSCTL_ACCESS_SHIFT) | CLCTL_INTERNAL_MASK | ((CLCTL_CLUSTER_BASE + Function) << CLUSCTL_FUNCTION_SHIFT) | ((Modify) << CLCTL_MODIFY_SHIFT))
    [all...]
ksproxy.h 497 KSDDKAPI HRESULT WINAPI KsOpenDefaultDevice(REFGUID Category,ACCESS_MASK Access,PHANDLE DeviceHandle);
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
js_fs_test.cc 521 TEST_F(JsFsTest, Access) {
527 ASSERT_EQ(true, SetDictKeyValue(&expected, "cmd", "access"));
539 EXPECT_EQ(0, fs_->Access(Path("/foo"), a_mode));
kernel_proxy_test.cc 678 virtual Error Access(const Path& path, int a_mode) { return 0; }
  /external/chromium_org/remoting/webapp/
oauth2_api.js 60 * Asynchronously retrieves a new access token from the server.
63 * the access token and expiration time are successfully fetched.
106 * Asynchronously exchanges an authorization code for access and refresh tokens.
109 * invoke when the refresh token, access token and access token expiration
161 * @param {string} token Access token.
host_screen.js 90 * @param {string} token The OAuth access token.
125 var accessCodeDisplay = document.getElementById('access-code-display');
127 // Display the access code in groups of four digits for readability.
131 nextFourDigits.className = 'access-code-digit-group';
145 console.error('Access code already invalid on receipt!');
247 * @type {boolean} Whether or not the access code timeout countdown is running.
253 * @type {number} The id of the access code expiry countdown timer.
259 * @type {number} The number of seconds until the access code expires.
275 * Stop the access code timeout countdown if it is running.
288 * Constants controlling the access code timer countdown display
    [all...]
  /external/chromium_org/third_party/libusb/src/libusb/os/
windows_usb.h 211 struct libusb_device *parent_dev; // access to parent is required for usermode ops
377 #define CTL_CODE(DeviceType, Function, Method, Access)( \
378 ((DeviceType) << 16) | ((Access) << 14) | ((Function) << 2) | (Method))
  /external/compiler-rt/lib/asan/
asan_report.cc 51 const char *Access() { return Blue(); }
314 // current memory access, indicate it in the log.
334 // FIXME: we may want to also print the size of the access here,
336 str.append("%s <== Memory access at offset %zd %s this variable%s\n",
464 "(wild memory access suspected).\n");
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopIdiomRecognize.cpp 868 /// mayLoopAccessLocation - Return true if the specified loop might access the
869 /// specified pointer location, which is a loop-strided access. The 'Access'
870 /// argument specifies what the verboten forms of access are (read or write).
871 static bool mayLoopAccessLocation(Value *Ptr,AliasAnalysis::ModRefResult Access,
875 // Get the location that may be stored across the loop. Since the access is
880 // If the loop iterates a fixed number of times, we can refine the access size
895 (AA.getModRefInfo(I, StoreLoc) & Access))
    [all...]
  /external/clang/lib/AST/
DeclCXX.cpp 567 // FIXME: We use the 'unsafe' accessor for the access specifier here,
569 // in Sema. However, LLDB *will* have set the access specifier correctly,
571 // so completeDefinition()'s overriding of the access specifiers doesn't
652 // -- has the same access control for all non-static data members,
657 case AS_none: llvm_unreachable("Invalid access specifier");
    [all...]
  /external/clang/include/clang/Sema/
Initialization.h     [all...]
  /external/chromium_org/tools/stats_viewer/
stats_table.cs 140 /// Get access to the counters in the table.
147 /// Get access to the processes in the table
163 /// Access to the table header
  /external/chromium_org/chrome/browser/resources/quota_internals/
event_handler.js 146 result = 'access from future ';
361 * Last storage access time from the origin.
439 ['lastAccessTime', 'Last Access Time',
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/image_editor/
viewport.js 176 * Access to the current viewport state.
  /external/chromium_org/ui/file_manager/gallery/js/image_editor/
viewport.js 176 * Access to the current viewport state.
  /external/llvm/include/llvm/Support/
Dwarf.h 826 const char *AccessibilityString(unsigned Access);

Completed in 816 milliseconds

1 2 34 5 6