HomeSort by relevance Sort by last modified time
    Searched full:pset (Results 1 - 25 of 65) sorted by null

1 2 3

  /external/libdrm/tests/planetest/
modeset.c 18 drmModePropertySetPtr pset; local
30 pset = drmModePropertySetAlloc();
31 if (!pset) {
36 ret = drmModePropertySetAdd(pset, crtc->crtc->crtc_id,
38 drmModePropertySetAdd(pset, crtc->crtc->crtc_id,
40 drmModePropertySetAdd(pset, conn->conn->connector_id,
43 printf("Failed to add blob %d to pset", create_blob.blob_id);
44 drmModePropertySetFree(pset);
49 NULL, pset);
51 drmModePropertySetFree(pset);
    [all...]
modeset.h 17 drmModePropertySetPtr pset, struct sp_crtc *crtc, int x, int y);
atomictest.c 50 drmModePropertySetPtr pset; local
103 pset = drmModePropertySetAlloc();
104 if (!pset) {
119 ret = set_sp_plane_pset(dev, plane[j], pset, test_crtc,
128 DRM_MODE_PAGE_FLIP_EVENT, NULL, pset);
142 drmModePropertySetFree(pset);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
pointer-set.h 25 void pointer_set_destroy (struct pointer_set_t *pset);
27 int pointer_set_contains (const struct pointer_set_t *pset, const void *p);
28 int pointer_set_insert (struct pointer_set_t *pset, const void *p);
  /external/iputils/
rarpd.c 565 struct pollfd pset[2]; local
612 pset[0].fd = socket(PF_PACKET, SOCK_DGRAM, 0);
618 if (ioctl(pset[0].fd, SIOCGIFINDEX, &ifr)) {
625 pset[1].fd = -1;
627 pset[1].fd = socket(PF_PACKET, SOCK_DGRAM, 0);
628 if (pset[1].fd >= 0) {
629 load_arp_bpflet(pset[1].fd);
634 if (pset[1].fd >= 0) {
640 if (bind(pset[1].fd, (struct sockaddr*)&sll, sizeof(sll)) < 0) {
641 close(pset[1].fd)
    [all...]
ping_common.c 791 struct pollfd pset; local
792 pset.fd = icmp_sock;
793 pset.events = POLLIN|POLLERR;
794 pset.revents = 0;
795 if (poll(&pset, 1, next) < 1 ||
796 !(pset.revents&(POLLIN|POLLERR)))
  /external/drm_hwcomposer/
drmdisplaycompositor.cpp 481 drmModeAtomicReqPtr pset = drmModeAtomicAlloc(); local
482 if (!pset) {
492 ret = drmModeAtomicAddProperty(pset, plane->id(),
494 drmModeAtomicAddProperty(pset, plane->id(), plane->fb_property().id(),
497 ALOGE("Failed to add plane %d disable to pset", plane->id());
498 drmModeAtomicFree(pset);
503 ret = drmModeAtomicCommit(drm_->fd(), pset, 0, drm_);
505 ALOGE("Failed to commit pset ret=%d\n", ret);
506 drmModeAtomicFree(pset); variable
510 drmModeAtomicFree(pset); variable
    [all...]
  /external/libcap/doc/old/
_setfilecap.2 11 .BI "int _setfilecap(char const *" filename ", size_t " usize ", __cap_s const *" iset ", __cap_s const *" pset ", __cap_s const *" eset );
13 .BI "int _getproccap(char const *" filename ", size_t " usize ", __cap_s *" iset ", __cap_s *" pset ", __cap_s *" eset );
15 .BI "int _fsetfilecap(int " fd ", size_t " usize ", __cap_s const *" iset ", __cap_s const *" pset ", __cap_s const *" eset );
17 .BI "int _fgetproccap(int " fd ", size_t " usize ", __cap_s *" iset ", __cap_s *" pset ", __cap_s *" eset );
_setproccap.2 11 .BI "int _setproccap(size_t " usize ", __cap_s const *" iset ", __cap_s const *" pset ", __cap_s const *" eset );
13 .BI "int _getproccap(size_t " usize ", __cap_s *" iset ", __cap_s *" pset ", __cap_s *" eset );
  /external/fio/os/
os-solaris.h 11 #include <sys/pset.h>
98 * pset binding hooks for fio
  /external/llvm/test/CodeGen/X86/
alignment-2.ll 16 @pset = external global %struct._psqlSettings
26 call void @llvm.memcpy.p0i8.p0i8.i32(i8* %tmp, i8* bitcast (%struct.printQueryOpt* getelementptr inbounds (%struct._psqlSettings, %struct._psqlSettings* @pset, i32 0, i32 4) to i8*), i32 76, i32 4, i1 false)
  /external/iproute2/misc/
arpd.c 64 struct pollfd pset[2]; variable in typeref:struct:pollfd
234 if (sendto(pset[0].fd, buf, p-buf, 0, (struct sockaddr*)&sll, sizeof(sll)) < 0)
495 n = recvfrom(pset[0].fd, buf, sizeof(buf), MSG_DONTWAIT,
764 pset[0].fd = socket(PF_PACKET, SOCK_DGRAM, 0);
765 if (pset[0].fd < 0) {
776 if (bind(pset[0].fd, (struct sockaddr*)&sll, sizeof(sll)) < 0) {
786 pset[1].fd = rth.fd;
802 pset[0].events = EVENTS;
803 pset[0].revents = 0;
804 pset[1].events = EVENTS
    [all...]
  /hardware/qcom/wlan/qcwcn/wifi_hal/
ifaceeventhandler.h 100 virtual void getResponseparams(feature_set *pset);
ifaceeventhandler.cpp 346 void WifihalGeneric::getResponseparams(feature_set *pset)
348 *pset = mSet;
  /external/llvm/include/llvm/CodeGen/
RegisterPressure.h 122 // The initial design was for MaxPSets=4, but that requires PSet partitions,
123 // which are not yet implemented. (PSet partitions are equivalent PSets given
410 /// Get the pressure of each PSet after traversing this instruction bottom-up.
415 /// Get the pressure of each PSet after traversing this instruction top-down.
MachineRegisterInfo.h     [all...]
  /external/llvm/lib/CodeGen/
RegisterPressure.cpp 441 // Find an existing entry in the pressure diff for this PSet.
684 /// Find the max change in max pressure that either surpasses a critical PSet
858 && "PSet overflow/underflow");
    [all...]
  /external/vulkan-validation-layers/layers/
core_validation.cpp     [all...]
  /external/valgrind/coregrind/m_syswrap/
syswrap-solaris.c     [all...]
  /external/boringssl/src/crypto/x509v3/
pcy_tree.c 87 STACK_OF(ASN1_OBJECT) *pset = node->data->expected_policy_set;
90 for (i = 0; i < sk_ASN1_OBJECT_num(pset); i++)
92 oid = sk_ASN1_OBJECT_value(pset, i);
  /prebuilts/go/darwin-x86/src/cmd/api/
goapi.go 720 pset := types.NewMethodSet(types.NewPointer(typ))
721 for i, n := 0, pset.Len(); i < n; i++ {
722 m := pset.At(i)
  /prebuilts/go/linux-x86/src/cmd/api/
goapi.go 720 pset := types.NewMethodSet(types.NewPointer(typ))
721 for i, n := 0, pset.Len(); i < n; i++ {
722 m := pset.At(i)
  /toolchain/binutils/binutils-2.25/binutils/
objcopy.c 1790 struct section_list *pset; local
    [all...]
  /external/valgrind/memcheck/tests/solaris/
scalar.stderr.exp     [all...]
  /external/mesa3d/src/gallium/drivers/nvc0/codegen/
nv50_ir_lowering_nvc0.cpp 1039 // delay turning PSET(FSET(x,y),0) into PSET(x,y) to a later pass
    [all...]

Completed in 1893 milliseconds

1 2 3