HomeSort by: relevance | last modified time | path
    Searched defs:capture (Results 1 - 20 of 20) sorted by relevancy

  /src/games/trek/
capture.c 1 /* $NetBSD: capture.c,v 1.12 2009/08/12 08:54:54 dholland Exp $ */
35 static char sccsid[] = "@(#)capture.c 8.1 (Berkeley) 5/31/93";
37 __RCSID("$NetBSD: capture.c,v 1.12 2009/08/12 08:54:54 dholland Exp $");
62 capture(int v __unused) function
  /src/external/apache2/llvm/dist/clang/tools/scan-build-py/libscanbuild/
intercept.py 5 """ This module is responsible to capture the compiler invocation of any
38 __all__ = ['capture', 'intercept_build', 'intercept_compiler_wrapper']
55 return capture(args)
58 def capture(args): function
  /src/external/apache2/llvm/dist/libcxx/utils/libcxx/
util.py 84 def capture(args, env=None): function
85 """capture(command) - Run the given command (or argv list) in a shell and
  /src/sys/arch/hppa/gsc/
harmonyvar.h 51 #define CAPTURE_EMPTYS 3 /* capture empty buffers */
59 uint8_t capture[CAPTURE_EMPTYS][HARMONY_BUFSIZE]; member in struct:harmony_empty
  /src/sys/external/bsd/drm2/dist/drm/i915/
i915_request.c 202 struct i915_capture_list *capture; local
204 capture = fetch_and_zero(&request->capture_list);
205 while (capture) {
206 struct i915_capture_list *next = capture->next;
208 kfree(capture);
209 capture = next;
i915_gpu_error.c 758 err_printf(m, "Capture: %lu jiffies; %d ms ago\n",
759 error->capture, jiffies_to_msecs(jiffies - error->capture));
1258 bool capture; local
1280 capture = i915_gem_context_no_error_capture(ctx);
1283 return capture;
1320 capture_user(struct intel_engine_capture_vma *capture,
1327 capture = capture_vma(capture, c->vma, "user", gfp);
1329 return capture;
1452 struct intel_engine_capture_vma *capture = NULL; local
    [all...]
i915_gpu_error.h 159 unsigned long capture; member in struct:i915_gpu_coredump
234 struct intel_engine_capture_vma *capture,
301 struct intel_engine_capture_vma *capture,
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaPseudoObject.cpp 219 OpaqueValueExpr *capture(Expr *op);
358 /// Capture the given expression in an OpaqueValueExpr.
359 OpaqueValueExpr *PseudoOpBuilder::capture(Expr *e) { function in class:PseudoOpBuilder
373 /// Capture the given expression as the result of this pseudo-object
382 // If the expression hasn't already been captured, just capture it
385 OpaqueValueExpr *cap = capture(e);
430 OpaqueValueExpr *capturedRHS = capture(RHS);
502 result = capture(result.get());
699 /// Capture the base object of an Objective-C property expression.
703 // If we have a base, capture it in an OVE and rebuild the syntacti
    [all...]
  /src/sys/external/bsd/drm2/dist/drm/i915/gem/
i915_gem_execbuffer.c 1874 struct i915_capture_list *capture; local
1876 capture = kmalloc(sizeof(*capture), GFP_KERNEL);
1877 if (capture) {
1878 capture->next = eb->request->capture_list;
1879 capture->vma = vma;
1880 eb->request->capture_list = capture;
  /src/external/mit/lua/dist/src/
lstrlib.c 376 } capture[LUA_MAXCAPTURES]; member in struct:MatchState
397 ms->capture[l].len == CAP_UNFINISHED))
398 return luaL_error(ms->L, "invalid capture index %%%d", l + 1);
406 if (ms->capture[level].len == CAP_UNFINISHED) return level;
407 return luaL_error(ms->L, "invalid pattern capture");
547 ms->capture[level].init = s;
548 ms->capture[level].len = what;
551 ms->level--; /* undo capture */
560 ms->capture[l].len = s - ms->capture[l].init; /* close capture *
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGBlocks.cpp 85 const BlockDecl::Capture *CI;
86 const CGBlockInfo::Capture *Capture;
92 const BlockDecl::Capture &CI,
93 const CGBlockInfo::Capture &Capture)
95 DisposeFlags(DisposeFlags), CI(&CI), Capture(&Capture) {}
98 return Capture->getOffset() < Other.Capture->getOffset()
912 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
1247 const CGBlockInfo::Capture &capture = BlockInfo->getCapture(variable); local
1546 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
1586 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
1980 const CGBlockInfo::Capture &capture = *CopiedCapture.Capture; local
2175 const CGBlockInfo::Capture &capture = *DestroyedCapture.Capture; local
    [all...]
CGDebugInfo.cpp 1432 // For C++11 Lambdas a Field will be the same as a Capture, but the Capture
4550 const BlockDecl::Capture *Capture;
4624 // 'this' capture.
4629 chunk.Capture = nullptr;
4634 for (const auto &capture : blockDecl->captures()) {
4635 const VarDecl *variable = capture.getVariable();
4636 const CGBlockInfo::Capture &captureInfo = block.getCapture(variable);
4645 chunk.Capture = &capture
4654 const BlockDecl::Capture *capture = Chunk.Capture; local
    [all...]
CGObjCMac.cpp 2431 // Ignore the optional 'this' capture: C++ objects are not assumed
2441 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
2444 if (capture.isConstant()) continue;
2446 CharUnits fieldOffset = capture.getOffset();
2959 // Ignore the optional 'this' capture: C++ objects are not assumed
2970 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local
2973 if (capture.isConstant()) continue;
2976 CharUnits::fromQuantity(layout->getElementOffset(capture.getIndex()))
    [all...]
  /src/external/gpl3/gcc/dist/gcc/
genmatch.cc 917 class capture : public operand class in inherits:operand
920 capture (location_t loc, unsigned where_, operand *what_, bool value_) function in class:capture
962 is_a_helper <capture *>::test (operand *op)
1039 /* A map of capture identifiers to indexes. */
1049 if (capture *c = dyn_cast<capture *> (o))
1124 if (capture *c = dyn_cast <capture *> (op))
1134 capture *nc = new capture (c->location, c->where, v[i]
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
genmatch.cc 767 class capture : public operand class in inherits:operand
770 capture (location_t loc, unsigned where_, operand *what_, bool value_) function in class:capture
812 is_a_helper <capture *>::test (operand *op)
889 /* A map of capture identifiers to indexes. */
899 if (capture *c = dyn_cast<capture *> (o))
974 if (capture *c = dyn_cast <capture *> (op))
984 capture *nc = new capture (c->location, c->where, v[i]
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/c/
c-parser.cc 17987 # pragma omp atomic capture new-line
17988 capture-stmt
17990 # pragma omp atomic capture new-line
17991 capture-block
17999 capture-stmt:
18001 capture-block:
18007 capture-stmt:
18009 capture-block:
18016 # pragma omp atomic compare capture new-line
18017 conditional-update-capture-atomi
18057 bool capture = false; local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/c/
c-parser.cc 20842 # pragma omp atomic capture new-line
20843 capture-stmt
20845 # pragma omp atomic capture new-line
20846 capture-block
20854 capture-stmt:
20856 capture-block:
20862 capture-stmt:
20864 capture-block:
20871 # pragma omp atomic compare capture new-line
20872 conditional-update-capture-atomi
20911 bool capture = false; local
    [all...]
  /src/sys/sys/
videoio.h 1188 * Can only be used with video capture.
1431 #define V4L2_CAP_VIDEO_CAPTURE 0x00000001 /* Is a video capture device */
1434 #define V4L2_CAP_VBI_CAPTURE 0x00000010 /* Is a raw VBI capture device */
1436 #define V4L2_CAP_SLICED_VBI_CAPTURE 0x00000040 /* Is a sliced VBI capture device */
1438 #define V4L2_CAP_RDS_CAPTURE 0x00000100 /* RDS data capture */
1443 /* Is a video capture device that supports multiplanar formats */
1457 #define V4L2_CAP_SDR_CAPTURE 0x00100000 /* Is a SDR capture device */
3128 * @vbi: raw VBI capture or output parameters
3129 * @sliced: sliced VBI capture or output parameters
3150 struct v4l2_captureparm capture; member in union:v4l2_streamparm::__anon7741
    [all...]
  /src/external/gpl3/gcc/dist/gcc/fortran/
gfortran.h 1588 unsigned order_unconstrained:1, order_reproducible:1, capture:1; member in struct:gfc_omp_clauses
  /src/external/gpl3/gcc.old/dist/gcc/fortran/
gfortran.h 1534 unsigned order_unconstrained:1, order_reproducible:1, capture:1; member in struct:gfc_omp_clauses

Completed in 139 milliseconds